-
Notifications
You must be signed in to change notification settings - Fork 27
/
Archives2.old.html
31 lines (29 loc) · 1.03 KB
/
Archives2.old.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
---
---
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<link href="/assets/stylesheets/archives2.css" rel="stylesheet" media="screen">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/masonry/3.3.2/masonry.pkgd.min.js"></script>
<script src="/assets/javascripts/archives2.js"></script>
</head>
<body>
<div class="grid">
<div class="grid-sizer"></div>
{% for post in site.posts %}
{% if site.time > post.date %}
<div class="grid-item">
<p>#{{ post.category }} {{ post.guest_name }}</p>
<!-- <img src="/img/{{ post.guestPic }}"/>
--> </div>
{% endif %}
{% endfor %}
</div>
</body>
</html>