-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (32 loc) · 1.17 KB
/
index.html
File metadata and controls
40 lines (32 loc) · 1.17 KB
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: index
---
<!-- fulltitle: This overrides the default page title, which is "{{page.title}} | {{site.title}}" -->
<!-- excerpt: If this isn't set, it'll pull your {{site.tagline}} for meta description-->
{% if site.demo_mode == true %}
<a class="gh-promo" href="https://github.com/EmilSayahi/basic-jekyll/"><img class="gh-promo_img" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
{% endif %}
<div class="post-list">
{% for post in paginator.posts reversed %}
<div class="content">
<li>
<h2>
<li class="p_num">{{ forloop.index | append: "." }}</li>
<a class="active"
href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
</h2>
</li>
<div class="post-meta">
<div class="date">{{ post.date | date: "%a. %-d %B %Y" | downcase }}
<br>
</div><i class="author">By <a href="#">{{ site.author }}</i></a>
</div>
</div>
<div class="post-content">
{{ post.content }}
</div>
</div>
</div>
{% endfor %}