-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.15 KB
/
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
---
layout: page
---
<section class="page-head">
<div class="social-platform-list">
<a href="https://github.com/mage3k" aria-label="Github"><i class="ion-social-github"></i></a>
<a href="https://twitter.com/mage3k" aria-label="Twitter"><i class="ion-social-twitter"></i></a>
<a href="https://www.instagram.com/mage3k" aria-label="Instagram"><i class="ion-social-instagram"></i></a>
<a href="/feed.xml" class="ion-social-rss"></a>
</div>
</section>
<section class="page-content">
<ul class="entry-list">
{% for post in site.posts limit: site.posts_limit %}
<li class="entry-item" itemscope itemtype="http://schema.org/Article">
<div class="entry-meta">
<time class="updated" itemprop="datepublished" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time>
</div>
<div class="detail">
<h3 itemprop="name">
<a itemprop="url" class="title" href="{{ post.url }}">{{ post.title }}</a>
</h3>
{%if post.description %}<div class="description" itemprop="description">{{ post.description }}</div>{% endif %}
</div>
</li>
{% endfor %}
</ul>
</section>