-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v.1.1.0] Version ready for Ghost 0.4.2
* Added package.json * Added links in the tags section * Added tag.hbs file
- Loading branch information
Showing
6 changed files
with
69 additions
and
5 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
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,4 @@ | ||
{ | ||
"name": "Perfetta", | ||
"version": "1.1.0" | ||
} |
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
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,52 @@ | ||
{{!< default}} | ||
|
||
{{! The main content area on the homepage }} | ||
<main class="page-wrap tag-page" role="main"> | ||
|
||
{{! Each post will be output using this markup }} | ||
{{#foreach posts}} | ||
|
||
<article class="{{post_class}}" data-scroll-reveal="enter bottom"> | ||
<div> | ||
<header class="post-header"> | ||
{{content words="0"}} | ||
<h2 class="post-title"> | ||
<a href="{{url}}"><span>{{{title}}}</span></a> | ||
</h2> | ||
</header> | ||
<section class="post-excerpt"> | ||
<p>{{excerpt}}…</p> | ||
|
||
<a href="{{url}}" class="post-readmore">Read more</a> | ||
</section> | ||
</div> | ||
|
||
<aside class="post-meta" data-scroll-reveal="enter left and move 30px after .3s"> | ||
<time datetime="{{date format='YYYY-MM-DD'}}"> | ||
{{date format="MMM DD"}} | ||
<span>{{date format="YYYY"}}</span> | ||
</time> | ||
|
||
<dl> | ||
<dt class="item-author">by</dt> | ||
<dd>{{author}}</dd> | ||
|
||
{{#if tags}} | ||
<dt class="item-tags">tagged as:</dt> | ||
<dd> | ||
<ul> | ||
{{#foreach tags}} | ||
<li><a href="{{url}}">{{name}}</a>{{#if @last}} {{else}}, {{/if}}</li> | ||
{{/foreach}} | ||
</ul> | ||
</dd> | ||
{{/if}} | ||
</dl> | ||
</aside> | ||
</article> | ||
|
||
{{/foreach}} | ||
|
||
{{!! After all the posts, we have the previous/next pagination links }} | ||
{{pagination}} | ||
</main> |