forked from QuangThong1/THONG-NGO_BitcoinVN
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdates.html
31 lines (28 loc) · 960 Bytes
/
updates.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
31
---
title: Updates
---
<p>Subscribe with <a href="{{ site.baseurl }}/feed.xml">RSS</a> to keep up with the latest changes.</p>
<p class="editor-link">
<a href="cloudcannon:collections/_posts" class="btn">
<strong>✎</strong> Update Change Log
</a>
</p>
<div class="changelog">
{% for post in site.posts %}
<div class="changelog-item">
<h3>
<a href="{{ post.url }}" title="{{ post.title }}">
{{ post.title }}
</a>
</h3>
<p>
<span class="date">{{ post.date | date: "%B %d, %Y" }}</span>
<span class="badge {{ post.type }}">{{ post.type }}</span>
</p>
{{ post.content }}
<p class="editor-link">
<a href="cloudcannon:collections/{{ post.path }}" class="btn"><strong>✎</strong> Update Entry</a>
</p>
</div>
{% endfor %}
</div>