mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
implement multilanguage new improved clients list page update history and statistics in the "about" page add "Some things you need to know" page add "Support Bitcoin" page add a contextual presentation for each category of users (individuals, organizations, developers and enthusiasts) add a short and concise "how it works" page add a "vocabulary" page for Bitcoin technical words definitions give more visibility for the foundation new website design and layout
23 lines
594 B
HTML
23 lines
594 B
HTML
---
|
|
layout: base-en
|
|
---
|
|
<div>
|
|
<h1>Version history</h1>
|
|
<ul class="unstyled">
|
|
{% for post in site.categories.releases %}
|
|
<li>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
{{ post.date | date:"%Y-%m-%d" }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="versiontext">
|
|
<h1>{{ page.title }} <small>{{ page.date | date:"%e %B %Y" }}</small></h1>
|
|
{% if page.src %}
|
|
<p>
|
|
<a href="{{ page.src }}">Full announcement (including signatures)</a>
|
|
</p>
|
|
{% endif %}
|
|
{{ content }}
|
|
</div>
|