-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (50 loc) · 1.95 KB
/
index.html
File metadata and controls
58 lines (50 loc) · 1.95 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
layout: page
use-site-title: true
---
<link rel="stylesheet" href="overrides.css">
<div id="content">
<img style="width: 100%; max-width: 800px" src="img/bitcoinabclogo.png">
<div id="description">
Bitcoin ABC is a full node implementation of the <a href="https://e.cash/">eCash</a> protocol.
<span id="subtext">
<br>
We aim to provide a solid, stable software and infrastructure for eCash
<br>
and lead protocol development to build global electronic cash.
</span>
</div>
<hr />
{% include upgrade-notice.html %}
{% assign latestVersion = site.data.github-releases[0].name %}
<h2><a href="/releases/">Install the latest version ({{ latestVersion }})</a></h2>
<hr />
<!-- Twitter feed embed code
-- This is no longer working, so temporarly disable it until it's fixed.
-- See https://twittercommunity.com/t/again-list-widget-says-nothing-to-see-here-yet-if-logged-out/198782
-- <a class="twitter-timeline" data-height="450" href="https://twitter.com/Bitcoin_ABC?ref_src=twsrc%5Etfw">Tweets by Bitcoin_ABC</a>
-- <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
-->
<!-- Blog feed -->
<div class="posts-list">
<h1>Hot Topics</h1>
{% if strapi.collections.posts.size > 0 %}
{% for post in strapi.collections.posts %}
<article class="post-preview">
<h2 class="post-title">{{ post.strapi_attributes.title }}</h2>
<p class="post-meta">
Posted on {{ post.strapi_attributes.publishedAt | date: "%B %-d, %Y" }}
</p>
<div class="post-entry-container">
<div class="post-entry">
<p>{{ post.strapi_attributes.short_content }}</p>
<a href="https://e.cash/blog/{{ post.strapi_attributes.slug }}" target="_blank" rel="noopener noreferrer" class="post-read-more">[Read More]</a>
</div>
</div>
</article>
{% endfor %}
{% else %}
<p>Nothing to show</p>
{% endif %}
</div>
</div>