-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.hbs
112 lines (101 loc) · 3.93 KB
/
index.hbs
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{{!< default}} {{> header}}
<main class="home">
<div class="letters latest device-only">
<h3 class="home-title"><a class="home-title-link" href="/letters">Latest Letter</a></h3>
{{#get "posts" limit="1" filter="tags:letter"}}
{{#foreach posts}}
{{> post-preview-home-card}}
{{/foreach}}
{{/get}}
<a href="/letters" class="button-special send-ethereum">
<span>
<h3>More Letters</h3>
</span>
<i class="fas fa-file-alt"></i>
</a>
</div>
<div class="letters">
<h3 class="home-title"><a class="home-title-link" href="/letters">Letters</a></h3>
{{#get "posts" filter="tags:letter"}}
{{#foreach posts}}
{{> post-preview-home-card}}
{{/foreach}}
{{/get}}
<a href="/letters" class="button-special send-ethereum">
<span>
<h3>More Letters</h3>
</span>
<i class="fas fa-file-alt"></i>
</a>
</div>
<div class="articles">
<h3 class="home-title"><a class="home-title-link" href="/articles">Articles</a></h3>
{{#get "posts" filter="tags:article"}}
{{#foreach posts}}
{{> post-preview-home-card}}
{{/foreach}}
{{/get}}
<a href="/articles" class="button-special send-ethereum">
<span>
<h3>More Articles</h3>
</span>
<i class="fas fa-newspaper"></i>
</a>
</div>
<div class="information">
<div class="info-buttons">
<a href="/about" class="button-special">
<span>
<h3>About</h3>
</span>
<i class="fas fa-dna"></i>
</a>
<a href="/vault" class="button-special">
<span>
<h3>Vault</h3>
</span>
<i class="fas fa-chart-network"></i>
</a>
<a href="/subscribe" class="button-special">
<span>
<h3>Subscribe</h3>
</span>
<i class="fas fa-bell-on"></i>
</a>
<a class="button-special buy-merchandise">
<span>
<h3>Merchandise</h3>
</span>
<i class="fas fa-tshirt"></i>
</a>
<a href="/support" class="button-special send-ethereum">
<span>
<h3>Support me</h3>
</span>
<i class="fas fa-heart"></i>
</a>
</div>
</div>
<div class="store-popup popup hide">
<div class="crypto-address-box eth-address-box">
<h3>Now Leaving Website</h3>
<p>This will open up my Merchandise Store in a new tab.</p>
<a href="https://shop.spreadshirt.com/sashinexists" target="_blank"
class=" button special copy-text copy-eth-address">
<span>
<h3 class="copy-eth-address-label">Go to Store</h3>
</span>
<i class="fas fa-store copy-eth-icon"></i>
</a>
<br />
<p>Alternatively, pick a quote <a href="/quotes">from here</a> to buy a t-shirt, hoodie or mug with it.
</p>
</div>
<button class="store-close close-button">
<i class="fas fa-window-close"></i>
</button>
</div>
<div class="leave-store screen hide">
</div>
</main>
<script type="text/javascript" src="{{asset " js/home.js"}}"></script>