diff options
| author | cylex <joshua.schwark@refactorsoftware.com> | 2019-01-07 14:14:37 -0500 |
|---|---|---|
| committer | cylex <joshua.schwark@refactorsoftware.com> | 2019-01-07 14:14:37 -0500 |
| commit | c20c1d93be4555b3901dd79bcd8dcafcfa51d863 (patch) | |
| tree | f1e88f780aed85f605da21dd4db56848592cd6ab /_layouts/post.html | |
| parent | d7ba3113893cc8d6b747c6817370d026e02703d5 (diff) | |
| download | silicon-linux-c20c1d93be4555b3901dd79bcd8dcafcfa51d863.tar.gz silicon-linux-c20c1d93be4555b3901dd79bcd8dcafcfa51d863.tar.bz2 silicon-linux-c20c1d93be4555b3901dd79bcd8dcafcfa51d863.zip | |
Fix code indentation and tag capitalization
Diffstat (limited to '_layouts/post.html')
| -rw-r--r-- | _layouts/post.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index d741573..b677e64 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,19 +1,19 @@ --- --- -<HTML> - <HEAD> +<html> + <head> {% include heading.html %} - <TITLE>{{ page.title }} | Silicon Linux Blog</TITLE> - </HEAD> -<BODY> - {% include navigator.html %} + <title>{{ page.title }} | Silicon Linux Blog</title> + </head> + <body> + {% include navigator.html %} - <h1>{{ page.title }}</h1> - <p><b>{{ page.date | date_to_string }} | By: {{ page.author }}</b></p> + <h1>{{ page.title }}</h1> + <p><b>{{ page.date | date_to_string }} | By: {{ page.author }}</b></p> - {{ content }} + {{ content }} - {% include footer.html %} -</BODY> -</HTML> + {% include footer.html %} + </body> +</html> |
