-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 1.39 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
---
layout: default
---
<script src="/js/main.js" type="text/javascript"></script>
<h1>Posts</h1>
<div class="container">
{% for post in site.posts %}
{% assign loopindex = forloop.index | modulo: 2 %}
{% if loopindex == 1 %}
<div class="row">
<div class="one-half column entry">
<a href="{{post.url}}"></a>
<div class="padded-content">
<div class="title">
{{post.title}}
</div>
<div class="date">
{{ post.date | date: '%B %d, %Y' }}
</div>
{% if post.excerpt %}
<div class="excerpt">
{{ post.excerpt }}
</div>
{% endif %}
{% if post.photo_url %}
<img src="{{ post.photo_url }}">
{% endif %}
</div>
</div>
{% else %}
<div class="one-half column entry">
<a href="{{post.url}}"></a>
<div class="padded-content">
<div class="title">
{{post.title}}
</div>
<div class="date">
{{ post.date | date: '%B %d, %Y' }}
</div>
{% if post.excerpt %}
<div class="excerpt">
{{ post.excerpt }}
</div>
{% endif %}
{% if post.photo_url %}
<img src="{{ post.photo_url }}">
{% endif %}
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>