-
Notifications
You must be signed in to change notification settings - Fork 0
/
oldex.html
33 lines (31 loc) · 1.01 KB
/
oldex.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
---
layout: default
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }}</title>
</head>
<body>
<!-- Navigation -->
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.md">About Me</a></li> <!-- Link to About Me page -->
<li><a href="/post.html">Posts</a></li> <!-- Link to Posts page -->
</ul>
</nav>
<!-- Posts -->
<ul id="posts">
{% for post in paginator.posts %}
<li class="post">
<h2><a href="{% if site.baseurl == "/" %}{{ post.url }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}">{{ post.title }}</a></h2>
<time datetime="{{ post.date | date_to_xmlschema }}" class="by-line">{{ post.date | date_to_string }}</time>
<p>{{ post.description | strip_html | truncatewords:40 }}</p>
</li>
{% endfor %}
</ul>
</body>
</html>