-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
71 lines (60 loc) · 1.4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
layout: default
title: Rex Dex's Personal Page
overview: true
display_title: false
---
<section class="standalone">
<div class="grid">
<div class="unit whole">
<div class="projectheader">
<div class="title">
<h2>News</h2>
</div>
</div>
<div class="articlelist">
{% for post in site.posts %}
<div class="article">
<h2>
{{ post.title }}
<a href="{{ post.url }}" class="permalink" title="Permalink">∞</a>
</h2>
<span class="post-category">
<span class="label">
{{ post.categories | array_to_sentence_string }}
</span>
</span>
<div class="post-meta">
<span class="post-date">
{{ post.date | date_to_string }}
</span>
<a href="https://github.com/{{ page.author }}" class="post-author">
{% avatar {{ post.author}} size=24 %}
{{ post.author }}
</a>
</div>
<div class="post-content">
{{ post.content }}
</div>
</div>
{% endfor %}
</div>
{% comment %}
<h2>Recent projects</h2>
<ul class="posts">
{% assign count = 1 %}
{% for page in site.pages %}
{% if page.project_index %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% assign count = count | plus: 1 %}
{% if count > 3 %}
{% break %}
{% endif %}
{% endif %}
{% endfor %}
</ul>
{% endcomment %}
</div>
<div class="clear"></div>
</div>
</section>