summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html18
-rw-r--r--_layouts/post.html19
-rw-r--r--_layouts/posts.html18
3 files changed, 36 insertions, 19 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..c8f24b1
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,18 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ {% include heading.html %}
+ <title>{{ page.title }} | Silicon Linux</title>
+ </head>
+ <body class="bg-dark text-white">
+ <div class="wrapper">
+ {% include navigator.html %}
+ <div class="container">
+ {{ content }}
+ </div>
+ </div>
+
+ {% include footing.html %}
+ {% include footer.html %}
+ </body>
+</html> \ No newline at end of file
diff --git a/_layouts/post.html b/_layouts/post.html
deleted file mode 100644
index b677e64..0000000
--- a/_layouts/post.html
+++ /dev/null
@@ -1,19 +0,0 @@
----
----
-
-<html>
- <head>
- {% include heading.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>
-
- {{ content }}
-
- {% include footer.html %}
- </body>
-</html>
diff --git a/_layouts/posts.html b/_layouts/posts.html
new file mode 100644
index 0000000..c8f24b1
--- /dev/null
+++ b/_layouts/posts.html
@@ -0,0 +1,18 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ {% include heading.html %}
+ <title>{{ page.title }} | Silicon Linux</title>
+ </head>
+ <body class="bg-dark text-white">
+ <div class="wrapper">
+ {% include navigator.html %}
+ <div class="container">
+ {{ content }}
+ </div>
+ </div>
+
+ {% include footing.html %}
+ {% include footer.html %}
+ </body>
+</html> \ No newline at end of file