forked from simpleanalytics/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 869 Bytes
/
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
---
layout: default
---
<h1>The blog of the privacy-first analytics tool</h1>
<div class="related">
<ul class="related-posts">
{% for post in site.posts limit:100 %}
<li>
<h2>
<a href="{{ post.url }}">{{ post.title }}</a>
<p>
<span class="text-muted">{{ post.date | date_to_string }} by {{ post.author }}</span> - {{ post.excerpt | strip_html | replace: '</p>', '' | replace: '<p>', '' }}
<a href="{{ post.url }}">Read more</a>
</p>
</h2>
</li>
{% endfor %}
</ul>
</div>
<form class="subscribe m-t-3">
<h3>Email me your next post</h3>
<p class="response" style="display: none;">Thank you, keep you posted ;)</p>
<p class="m-b-0">
<input name="email" placeholder="Enter email..." type="email">
<input class="button" value="Send" type="submit">
</p>
</form>