mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 01:36:13 +00:00
27 lines
686 B
HTML
27 lines
686 B
HTML
---
|
|
layout: base
|
|
lang: en
|
|
id: version-history
|
|
title: Bitcoin-Qt version history
|
|
---
|
|
<div class="versiontext">
|
|
<h1>Bitcoin-Qt version history</h1>
|
|
<ul>
|
|
{% for post in site.categories.releases %}
|
|
<li>
|
|
{{ post.date | date:"%Y-%m-%d" }} - <a href="#{{ post.version }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% for post in site.categories.releases %}
|
|
<div class="versiontext">
|
|
<h1><a name="{{ post.version }}">{{ post.title }}<br><small>{{ post.date | date:"%e %B %Y" }}</small></a></h1>
|
|
{% if post.src %}
|
|
<p>
|
|
<a href="{{ post.src }}">Full announcement (including signatures)</a>
|
|
</p>
|
|
{% endif %}
|
|
{{ post.content }}
|
|
</div>
|
|
{% endfor %}
|