Created
August 15, 2014 15:53
-
-
Save consoledotblog/569fb2507588bd4de3f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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