-
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
d74a952
commit 85297b2
Showing
5 changed files
with
48 additions
and
107 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,28 @@ | ||
{{#foreach posts}} | ||
<article class="post" id="{{id}}" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting"> | ||
<div class="wrapper"> | ||
<header> | ||
<h2 class="post-title" itemprop="name headline"><a href="{{url}}" class="post-link">{{{title}}}</a></h2> | ||
</header> | ||
<section class="post-text" itemprop="articleBody text"> | ||
<p>{{excerpt}}…</p> | ||
</section> | ||
<footer> | ||
<ul> | ||
{{#author}} | ||
<li itemprop="author" itemscope itemtype="http://schema.org/Person"> | ||
{{#if image}} | ||
<img class="author-image" src="{{image}}" alt="{{name}}"> | ||
{{/if}} | ||
<span class="author-info"> | ||
<span rel="author" itemprop="url name">{{name}}</span> | ||
{{/author}} | ||
<span class="hide-on-mobile">{{tags separator=", " prefix="in "}}</span> | ||
</span> | ||
</li> | ||
</ul> | ||
</footer> | ||
</div> | ||
</article> | ||
|
||
{{/foreach}} |
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