blob: dfda49d473fcca335ac17ba6a3dae6c3b48b7e89 (
plain) (
blame)
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
|
---
---
<!DOCTYPE HTML>
<HTML>
<HEAD>
{% include heading.html %}
<TITLE>Blog | {{ site.title }}</TITLE>
</HEAD>
<BODY>
{% include navigator.html %}
<div class="jumbotron green darken-4">
<h1><center>Blog <a href="feed.xml"><i class="fas fa-rss-square white-text"></i></a></center></h1>
</div>
<div class="container">
<ul>
{% for post in site.posts %}
<li class="list-blog white-text" style="list-style-type:none;">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p><b>{{ post.date | date_to_string }} | By: {{ post.author }}</b></p>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>
</div>
{% include footer.html %}
</BODY>
</HTML>
|