-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathindex.html
32 lines (30 loc) · 968 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
31
32
---
layout: home
---
<div class="user-details">
<h2> Me and this website </h2>
<p style="text-align: justify;"> Your description </p>
<div class="analytics" style="border: solid lightgrey; border-radius: 5px;">
<h3> Analytics </h3>
{% include clustrmap.html style="js" %}
<p> <small> If you are not seeing a map, please disable Ad block </small></p>
</div>
</div>
<div class="permlinks">
<h2>Recent Posts</h2>
<dl>
{% for post in site.posts limit:3 %}
<dt><code>{{ post.date | date_to_string }} </code><i class="fas fa-angle-double-right" aria-hidden="true"></i><a href="{{ post.url }}">{{ post.title }}</a> {% include status-indicator.html status=post.status%}
{% if post.description %}
<dd style="text-align: justify">{{ post.description | markdownify }}
</dd>
{% endif %}
{% endfor %}
<p>... <a href="/blog">Full Posts List</a> </p>
</dl>
<h2>Upcoming Posts (edit me at /index.html )</h2>
<ul>
<li>Post 1</li>
<li>Post 2</li>
</ul>
</div >