-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.31 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
---
layout: default
title: etc
---
<header>
<h1>etc.</h1>
<p class="palette">This theme is from <a href="http://www.colourlovers.com/">ColourLovers.</a></p>
<p> It's called <a class="palette-title" href=""></a> <a class="color-button" href="#">Change Theme</a></p>
<p class="about">
Welcome to my blog. Sometimes I write about games. Sometimes I write about design. Other times I write about other stuff.
</p>
<a href="http://robertvinluan.com" class="who">http://robertvinluan.com</a>
</header>
<div id="articles-list">
<ul>
{% for post in site.posts %}
{% unless post.private %}
<li class="colored">
<a href="{{ post.url }}">
<article>
<h1 class="title" title="{{ post.title }}">{{ post.title }}</h1>
<h2 class="subtitle">{{ post.subtitle }}</h2>
</article>
</a>
</li>
{% endunless %}
{% endfor %}
{% capture total_posts %}
{{ site.posts | size | minus:5 }}
{% endcapture %}
{% if total_posts contains '-' %}
{% for i in (0..4) %}
<li class="colored dummy-post">
<article></article>
</li>
{% endfor %}
{% endif %}
</ul>
</div>