-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
35 lines (34 loc) · 1.07 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
---
layout: default
title: Home
---
<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="{{ site.baseurl }}/screenshots/{{ post.screenshot }}" alt="">
</div>
</div>
</a>
<div class="post-description">
<h3 class="post-description-title">
<a href="{{ site.baseurl }}{{ post.url }}" class="post-description-link">{{ post.title }}</a>
</h3>
<p class="post-description-date">{{ post.date | date: "%d/%m/%Y" }}</p>
</div>
</li>
{% endfor %}
</ul>
{% include pagination.html %}
</div>