-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog.html
30 lines (29 loc) · 942 Bytes
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
layout: changelog_front
title: Changelog
permalink: /changelog/
---
<div class="container mtb">
<div class="row">
<div class="col-lg-8">
{% for post in site.categories['changelog'] %}
<div class="changelog">
<h1>GOST {{ post.version }} - {{ post.published }}</h1>
<ul>
{% for change in post.changes %}
<li>{{ change }}</li>
{% endfor %}
</ul>
<h3>DOCKER</h3>
{% for d in post.docker %}
<a href="https://hub.docker.com/r/geodan/gost/tags/">{{ d }}</a><br/>
{% endfor %}
<h3>BINARIES</h3>
<a href="{{ post.binaries }}">DOWNLOAD PAGE</a>
</div>
<div class="hline"></div>
<div class="spacing"></div>
{% endfor %}
</div>
</div>
</div>