summaryrefslogtreecommitdiff
path: root/blog.html
diff options
context:
space:
mode:
authorcylex <joshua.schwark@refactorsoftware.com>2019-01-07 14:14:37 -0500
committercylex <joshua.schwark@refactorsoftware.com>2019-01-07 14:14:37 -0500
commitc20c1d93be4555b3901dd79bcd8dcafcfa51d863 (patch)
treef1e88f780aed85f605da21dd4db56848592cd6ab /blog.html
parentd7ba3113893cc8d6b747c6817370d026e02703d5 (diff)
downloadsilicon-linux-c20c1d93be4555b3901dd79bcd8dcafcfa51d863.tar.gz
silicon-linux-c20c1d93be4555b3901dd79bcd8dcafcfa51d863.tar.bz2
silicon-linux-c20c1d93be4555b3901dd79bcd8dcafcfa51d863.zip
Fix code indentation and tag capitalization
Diffstat (limited to 'blog.html')
-rw-r--r--blog.html41
1 files changed, 20 insertions, 21 deletions
diff --git a/blog.html b/blog.html
index 865a88f..492c925 100644
--- a/blog.html
+++ b/blog.html
@@ -1,25 +1,24 @@
---
project: Silicon Linux
---
+<html>
+ <head>
+ {% include heading.html %}
+ <title>Silicon Linux Blog</title>
+ </head>
+ <body>
+ {% include navigator.html %}
+ <h1>Latest Posts</h1>
-<HTML>
- <HEAD>
- {% include heading.html %}
- <TITLE>Silicon Linux Blog</TITLE>
- </HEAD>
-<BODY>
- {% include navigator.html %}
- <h1>Latest Posts</h1>
-
-<ul>
- {% for post in site.posts %}
- <li class="list-blog">
- <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>
- {% include footer.html %}
-</BODY>
-</HTML>
+ <ul>
+ {% for post in site.posts %}
+ <li class="list-blog">
+ <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>
+ {% include footer.html %}
+ </body>
+</html>