First commit of base theme.
This commit is contained in:
commit
72ac450454
20 changed files with 1089 additions and 0 deletions
27
blog.html
Normal file
27
blog.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: default
|
||||
title: Blog
|
||||
---
|
||||
|
||||
<h1>Blog</h1>
|
||||
|
||||
<ul class="posts">
|
||||
{% for post in site.posts %}
|
||||
<li>
|
||||
<article class="post">
|
||||
<header>
|
||||
<time datetime="{{ post.date }}">{{ post.date | date: "%m.%d.%Y" }}</time>
|
||||
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
|
||||
</header>
|
||||
|
||||
<div class="entry">
|
||||
{{ post.content | truncatewords:85}}
|
||||
|
||||
<p class="read-more">
|
||||
<a href="{{ post.url }}">Read more</a>
|
||||
</p>
|
||||
</div>
|
||||
</article>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
Loading…
Add table
Add a link
Reference in a new issue