-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
93 lines (79 loc) · 2.84 KB
/
index.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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
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 -->
{% assign english_posts = site.posts | where: "lang", "en" %}
{% assign first_posts = english_posts | slice: 0, site.front_page_posts %}
<div class="posts-list">
{% for post in first_posts %}
<article class="post-preview">
<a href="{{ post.url }}">
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<p class="post-meta">
Posted on {{ post.date | date: "%B %-d, %Y" }}
</p>
<div class="post-entry-container">
{% if post.image %}
<div class="post-image">
<a href="{{ post.url }}">
<img src="{{ post.image }}">
</a>
</div>
{% endif %}
<div class="post-entry">
{{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
{% assign excerpt_word_count = post.excerpt | number_of_words %}
{% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
<a href="{{ post.url }}" class="post-read-more">[Read More]</a>
{% endif %}
</div>
</div>
{% if post.tags.size > 0 %}
<div class="blog-tags">
Tags:
{% if site.link-tags %}
{% for tag in post.tags %}
<a href="{{ site.baseurl }}/tags#{{- tag -}}">{{- tag -}}</a>
{% endfor %}
{% else %}
{{ post.tags | join: ", " }}
{% endif %}
</div>
{% endif %}
</article>
{% endfor %}
</div>
<div style="font-size: 24px">
<a href="/blog/" class="post-read-more">Older Blog Posts</a>
</div>
</div>