Skip to content

Instantly share code, notes, and snippets.

@consoledotblog
Created August 15, 2014 15:53
Show Gist options
  • Save consoledotblog/569fb2507588bd4de3f1 to your computer and use it in GitHub Desktop.
Save consoledotblog/569fb2507588bd4de3f1 to your computer and use it in GitHub Desktop.
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example Blog</title>
<link rel="import" href="../components/core-scroll-header-panel/core-scroll-header-panel.html">
<link rel="import" href="../components/core-toolbar/core-toolbar.html">
<link rel="import" href="../components/core-icon-buttons/core-icon-buttons.html">
<link rel="import" href="../components/core-card/core-card.html">
</head>
<body>
<core-scroll-header-panel condenses>
<core-toolbar id="core_toolbar" class="tall">
<core-icon-button icon="arrow-back"></core-icon-button>
<div id="div" flex></div>
<core-icon-button icon="search"></core-icon-button>
<core-icon-button icon="more-vert"></core-icon-button>
<div id="div1" class="bottom indent">Blog</div>
</core-toolbar>
<section content>
<core-card vertical layout>
<h1>My Blog Entry</h1>
<small>by: John Smith</small>
<br>
<p>
Content goes here...
</p>
</core-card>
</section>
</core-scroll-header-panel>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment