-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.08 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
29
30
31
32
33
34
35
36
37
38
39
40
---
layout: default
---
<div class="row">
<h2>Posts</h2>
</div>
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<div class="row">
<div class="col-12 posts">
{%- if site.posts.size > 0 -%}
<ul>
{% assign sorted_posts = site.posts | sort:"value" | reverse %}
{%- for post in sorted_posts -%}
<li>
<div class="post-preview">
<div class="">
<h3 class="post-title">
<a class="internal-link" href="{{ post.url | relative_url }}">
{%- if post.lang == 'ar' -%}
<span class="ar-post">[Arabic] </span>
{%- endif -%}
{{ post.title | escape }}
</a>
</h3>
<span class="date">{{ post.date | date: date_format }}</span>
</div>
<div class="post-brief">
{{post.brief}}
</div>
<hr>
</div>
</li>
{%- endfor -%}
</ul>
{%- endif -%}
</div>
</div>