-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 835 Bytes
/
index.html
File metadata and controls
38 lines (31 loc) · 835 Bytes
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
---
layout: default
title: Home
project-list-limit: 3
post-list-limit: 7
---
<section>
<h1>Projects</h1>
<ul class="projects">
{% assign projects = site.projects | sort: "date" | reverse %}
{% for project in projects limit: page.project-list-limit %}
{% include project-list-item.html %}
{% endfor %}
</ul>
<p><strong><a href="/projects">All {{site.projects | size}} projects ►</a></strong></p>
</section>
<section>
<h1>Posts</h1>
<ul class="posts">
{% for post in site.posts limit:page.post-list-limit %}
{% include post-list-item.html %}
{% endfor %}
</ul>
<p><strong><a href="/blog">All {{site.posts | size}} posts ►</a></strong></p>
</section>
<section>
<h1>Categories</h1>
{% include category-list.html %}
<h1>Tags</h1>
{% include tag-list.html %}
</section>