forked from protesilaos/my-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 1.45 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: 'Protesilaos Stavrou'
layout: index
---
<div class="index index-blog">
<p>This is my personal website: a place where you can read, watch, and
learn a lot about a growing number of subjects.</p>
</div>
<div class="index index-blog">
{% assign publications = site.documents | where: 'master', true | sort: 'date' | reverse %}
<h2>Latest publications</h2>
<ul>
{% for i in publications limit:10 %}
<li class="index-blog-post-container">
<time class="index-blog-post-timestamp">
{{ i.date | date: site.date_format }}
</time>
<a class="index-blog-post-link" href="{{ i.url | relative_url }}">
<span class="index-blog-post-heading">{{- i.title -}}</span>
{%- if i.mediaid or i.layout == 'vlog' -%}
<span class="index-blog-post-meta-label"> [video]</span>
{%- elsif i.book -%}
<span class="index-blog-post-meta-label"> [book]</span>
{%- endif -%}
<small class="index-blog-post-collection"> ({{- i.collection -}})</small>
</a>
</li>
{% endfor %}
</ul>
</div>
<div>
{% assign indices = site.data.indices %}
<h2>Main content indices</h2>
<ul>
{% for i in indices %}
<li>
<p>
<strong><a href="{{ i.url | absolute_url }}">{{ i.name }}</a> :: </strong> {{ i.description }}
</p>
</li>
{% endfor %}
</ul>
<p>For the available RSS/Atom links, refer to
the <a href="/feeds/">feeds' information page</a>.</p>
</div>