diff options
| author | Barry Clark <barry@barryclark.co> | 2014-02-06 19:18:00 -0500 |
|---|---|---|
| committer | Barry Clark <barry@barryclark.co> | 2014-02-06 19:18:00 -0500 |
| commit | 72ac45045456bdbbbecb38db2e62e113f22f37d4 (patch) | |
| tree | 048e5ed7634e6c048c88813291a390078bdc23d9 /blog.html | |
| download | acn-blog-72ac45045456bdbbbecb38db2e62e113f22f37d4.tar.gz acn-blog-72ac45045456bdbbbecb38db2e62e113f22f37d4.tar.bz2 acn-blog-72ac45045456bdbbbecb38db2e62e113f22f37d4.zip | |
First commit of base theme.
Diffstat (limited to 'blog.html')
| -rw-r--r-- | blog.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..0a9f265 --- /dev/null +++ b/blog.html @@ -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> |
