-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 985 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
33
34
35
36
37
38
39
40
---
layout: default
---
<div class="header-bar">
<h1>{{ site.title }}</h1>
<h2>{{ site.description}}</h2>
</div>
<div class="home">
<ul class="post-list">
{% for post in site.posts %}
<li>
<header class="post-header">
<h2 class="post-title">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</header>
<article class="post-content">
{{ post.excerpt }}
</article>
<div class="share-page">
Share this on →
<a onclick="MastodonShare(this);"
data-src="{{ post.title }} by {{ site.fedi_username }}: {{site.url}}{{ post.url }}"
href=""
title="Share on Mastodon">Mastodon</a>
</div>
{% include post-tags.html %}
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>