summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html17
-rw-r--r--_layouts/post.html13
2 files changed, 30 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..9c1d6d4
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>{{ page.title }} - Sanders Technology Group</title>
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
+</head>
+<body>
+ <div id="Main">
+ {% include nav.html %}
+ {{ content }}
+ {% include footer.html %}
+ </div>
+ <script src="{{ '/assets/js/main.js' | relative_url }}"></script>
+</body>
+</html>
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..c3410b0
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,13 @@
+---
+layout: default
+---
+<div id="Blog">
+ <article class="post">
+ {% if page.image %}
+ <img src="{{ page.image | relative_url }}" class="featured-image">
+ {% endif %}
+ <h1>{{ page.title }}</h1>
+ <small><p class="post-date">Published Date: {{ page.date | date: "%B %d, %Y" }}</p>x</small>
+ {{ content }}
+ </article>
+</div> \ No newline at end of file