-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from polygonix/add_taghbs
Add tag.hbs template
- Loading branch information
Showing
2 changed files
with
103 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{{!< default}} | ||
|
||
{{! The comment above "< default" means - insert everything in this file into | ||
the {body} of the default.hbs template, which contains our header/footer. }} | ||
|
||
{{! The big featured header on the homepage, with the site logo and description }} | ||
<header class="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}> | ||
<div class="vertical"> | ||
<div class="site-head-content inner"> | ||
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}} | ||
<h1 class="blog-title">{{@blog.title}}</h1> | ||
<h2 class="blog-description">{{@blog.description}}</h2> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
{{! The main content area on the homepage }} | ||
<main class="content" role="main"> | ||
|
||
<header class="tag-archive-header"> | ||
<h1>{{tag.name}}</h1> | ||
</header> | ||
|
||
{{! Each post will be output using this markup }} | ||
{{#foreach posts}} | ||
|
||
<article class="{{post_class}}"> | ||
<header class="post-header"> | ||
<span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{tags prefix="on "}}</span> | ||
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2> | ||
|
||
</header> | ||
<section class="post-excerpt"> | ||
<p>{{excerpt}}…</p> | ||
</section> | ||
</article> | ||
|
||
{{/foreach}} | ||
|
||
{{!! After all the posts, we have the previous/next pagination links }} | ||
{{pagination}} | ||
|
||
</main> |