-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
486116b
commit 42588d0
Showing
3 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,26 @@ | ||
{{!< 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="main-header tag-page-header"> | ||
<div class="grid-container grid-720"> | ||
<h1 id="tag-search"></h1> | ||
</div> | ||
</header> | ||
|
||
|
||
<section id="post-container" role='main' class="main-section hide-post"> | ||
<div class="grid-container grid-720"> | ||
<section class="related-posts"> | ||
<small>Related posts</small> | ||
</section> | ||
|
||
{{! The tag below includes the post loop - partials/post-loop.hbs }} | ||
{{> "post-loop"}} | ||
|
||
{{!! After all the posts, we have the previous/next pagination links }} | ||
{{pagination}} | ||
</div> | ||
</section> |