-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpast-posts.html
45 lines (40 loc) · 1.78 KB
/
past-posts.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
---
layout: page
---
<div class="page-container">
<div class="page-title-contain">
<h1 class="page-title">Eyes wide open</h1>
</div>
<div class="page-intro-post"></div>
<div class="post-list-container-outer-first">
{% for post in site.posts limit: 1 %}
<a class="post-list-container-cover" href="{{ post.url | prepend: site.baseurl }}"></a>
<a class="post-list-container-inner" href="{{ post.url | prepend: site.baseurl }}">
<div class="img-small-post-container">
<img class="post-image-small" src="assets/img/posts/{{post.image}}" alt="">
</div>
<div class="small-post-description-container">
<h2 class="link small-post-title titleh2">{{ post.title }}</h2>
<time class="link post-date">{{ post.date | date: "%b %-d, %Y" }}</time>
<p class="link small-meta-description">{{ post.meta-description }}</p>
<p class="new">*NEW*</p>
</div>
</a>
{% endfor %}
</div>
<div class="post-list-container-outer-second">
{% for post in site.posts offset: 1 %}
<a class="post-list-container-cover" href="{{ post.url | prepend: site.baseurl }}"></a>
<a class="post-list-container-inner" href="{{ post.url | prepend: site.baseurl }}">
<div class="img-small-post-container">
<img class="post-image-small" src="assets/img/posts/{{post.image}}" alt="">
</div>
<div class="small-post-description-container">
<h2 class="link small-post-title titleh2">{{ post.title }}</h2>
<time class="link post-date">{{ post.date | date: "%b %-d, %Y" }}</time>
<p class="link small-meta-description">{{ post.meta-description }}</p>
</div>
</a>
{% endfor %}
</div>
</div>