-
Notifications
You must be signed in to change notification settings - Fork 72
/
index.html
36 lines (35 loc) · 1.11 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
---
layout: default
title: Home
pagination:
enabled: true
---
<div id="home">
<ul class="posts list-unstyled">
{% for post in paginator.posts %}
<li>
<a href="{{ post.source }}" class="screenshot-link" target="_blank">
<div class="browser-frame">
<div class="browser-top-bar">
<div class="browser-button-wrapper">
<div class="browser-button"></div>
<div class="browser-button"></div>
<div class="browser-button"></div>
</div>
<div class="browser-address"></div>
</div>
<div class="browser-container">
<img src="/screenshots/{{post.image}}" />
{{ post.content }}
</div>
</div>
</a>
<div class="post-description">
<h3 class="post-description-title"><a href="{{ post.url }}" class="post-description-link">{{ post.title }}</a></h3>
<p class="post-description-date">{{ post.date | date: "%B %-d, %Y" }}</p>
</div>
</li>
{% endfor %}
</ul>
{% include pagination.html %}
</div>