forked from hadrienj/hadrienj.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·35 lines (31 loc) · 974 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
---
bg: "leaves.jpg"
layout: page
title: "Posts"
crawlertitle: "Posts"
active: true
mathjax: true
---
{% for post in site.posts %}
<article class="index-page">
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
<p class="post-meta">
<time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%m-%d-%Y" }}</time>
{% if post.author %}
/
<span>{{ post.author }}</span>
{% endif %}
{% if post.tags %} | {% for tag in post.tags %}
<a href="{{ site.baseurl }}{{ site.tag_page }}#{{ tag | slugify }}" class="post-tag">{{ tag }}</a>
{% endfor %}
{% endif %}
</p>
<div class="borderAppears">
<a href="{{ post.url | relative_url }}" class='noDeco'>
<p>{{ post.excerpt | strip_html | truncatewords:40 }}</p>
{{ post.excerpt-image}}
</a>
</div>
</article>
<p style='text-align: center'>⥈ ⥈ ⥈</p>
{% endfor %}