diff options
| author | Benjamin Sanders <ben@Benjamins-MacBook-Pro.local> | 2025-07-04 19:47:35 -0400 |
|---|---|---|
| committer | Benjamin Sanders <ben@Benjamins-MacBook-Pro.local> | 2025-07-04 19:47:35 -0400 |
| commit | cb192289eeecccb750f613b993dc3f366446d4f2 (patch) | |
| tree | 5ae1e230e0592712774a07f5e2b5bf5f2401eba5 /_layouts | |
Initial Commit
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 17 | ||||
| -rw-r--r-- | _layouts/post.html | 13 |
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 |
