Blog: Add Blog To Bitcoin.org

* Adds new page /en/blog

* Adds new feed for blog posts to /en/rss/blog.xml

* Adds "Blog" link to site footer

* Adds three back-dated blog posts to give the blog some initial
  content.
This commit is contained in:
David A. Harding 2015-04-22 17:49:30 -04:00
parent 3a7968eee4
commit ffa9a249f3
No known key found for this signature in database
GPG key ID: 4B29C30FF29EC4B7
27 changed files with 803 additions and 1 deletions

27
en/blog.html Normal file
View file

@ -0,0 +1,27 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
title: Bitcoin.org Site Blog - Bitcoin
id: site-blog
---
<div class="home">
<h1 class="page-heading">Bitcoin.org Site Blog</h1>
<p class="summary">Discover what's new on Bitcoin.org or <a href="/en/rss/blog.xml">subscribe to the RSS feed</a></p>
<ul class="post-list">
{% for post in site.posts %}
<li>
<a class="post-link" href="{{ post.url | remove: '.html' }}">{{ post.title }}</a>
-
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</li>
{% endfor %}
</ul>
</div>