-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathblog.html
36 lines (32 loc) · 885 Bytes
/
blog.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: Blog
---
{% assign first_post = site.posts.first %}
<div class="flex">
<div class='text-center mr-8'>
<h1 class="my-0 mt-4 ml-4">Ryan Bigg</h1>
<a href="/blog">⟵ Posts</a>
</div>
<div class="post-title ml-auto">
<a href="{{ first_post.url }}">
<h2 class="mt-4">{{ first_post.title }}</h2>
</a>
<small>{{ first_post.date | date_to_string }}</small>
</div>
</div>
<article>
{{first_post.content}}
</article>
<div class="text-center mb-8">
<h2>In case you missed it...</h2>
<ul>
{% for post in site.posts limit:10 offset: 1 %}
<li class="mb-4"><a href="{{ post.url }}">{{ post.title }}</a> <span class="text-gray-400 text-xs">— {{
post.date |
date_to_string }}</span>
</li>
{% endfor %}
</ul>
<center><a href='/blogography.html'>The Last 100 Posts</a></center>
</div>