newsposts: add link to mailing list posts with signatures

This commit is contained in:
Nils Schneider 2011-09-03 11:21:29 +02:00
parent 3e947b373f
commit 797b3d4fb2
3 changed files with 12 additions and 0 deletions

View file

@ -34,6 +34,11 @@ layout: base
</div> </div>
<div class="span11"> <div class="span11">
<h1>{{ page.title }}</h1> <h1>{{ page.title }}</h1>
{% if page.src %}
<p>
<a href="{{ page.src }}">Full announcement (including signatures)</a>
</p>
{% endif %}
{{ content }} {{ content }}
</div> </div>
</div> </div>

View file

@ -1,7 +1,9 @@
--- ---
layout: post layout: post
title: Bitcoin version 0.3.24 released title: Bitcoin version 0.3.24 released
src: http://sourceforge.net/mailarchive/message.php?msg_id=27771039
--- ---
Bitcoin v0.3.24 is now available for download at Bitcoin v0.3.24 is now available for download at
<https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.24/> <https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.24/>

View file

@ -131,6 +131,11 @@ ALERT:
<h1>News</h1> <h1>News</h1>
{% for post in site.posts limit: 1 %} {% for post in site.posts limit: 1 %}
<h2><a href="{{ post.url }}">{{ post.title }}</a> <small>{{ post.date | date:"%e %B %Y" }}</small></h2> <h2><a href="{{ post.url }}">{{ post.title }}</a> <small>{{ post.date | date:"%e %B %Y" }}</small></h2>
{% if post.src %}
<p>
<a href="{{ post.src }}">Full announcement (including signatures)</a>
</p>
{% endif %}
{{ post.content }} {{ post.content }}
{% endfor %} {% endfor %}
<p><a class="btn" href="news.html">News archive</a></p> <p><a class="btn" href="news.html">News archive</a></p>