From f1998c321a4eec6d75b58d84aa8610971bf21979 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sat, 31 Jul 2021 11:35:39 -0600 Subject: move static files into static sub-dir, refactor nix a bit --- src/_layouts/post.html | 80 -------------------------------------------------- 1 file changed, 80 deletions(-) delete mode 100644 src/_layouts/post.html (limited to 'src/_layouts/post.html') diff --git a/src/_layouts/post.html b/src/_layouts/post.html deleted file mode 100644 index 6b97042..0000000 --- a/src/_layouts/post.html +++ /dev/null @@ -1,80 +0,0 @@ ---- -layout: default ---- -
- -
-

- {{ page.title | escape }} -

-
- - - - • - {%- if page.updated %} - - • - {% endif -%} - {{ page.description }} -
-
- - {% if page.series %} - {% assign foundThis = false %} - {% for post in site.posts reversed %} - {% if post.series == page.series %} - {% if post.url == page.url %} - {% assign foundThis = true %} - {% elsif foundThis %} - {% assign next = post %} - {% break %} - {% else %} - {% assign prev = post %} - {% endif %} - {% endif %} - {% endfor %} - {% if prev or next %} -

- This post is part of a series:
- {% if prev %} - Previously: {{ prev.title }}
- {% endif %} - {% if next %} - Next: {{ next.title }}
- {% endif %} -

- {% endif %} - {% endif %} - -
- {{ content }} -
- - {% if page.git_repo %} -

- To check this project out locally:
-

git clone {{ page.git_repo }}
-{% if page.git_commit %}git checkout {{ page.git_commit }}{% endif %}
-

- {% endif %} - - {% if prev or next %} -

- If you liked this post, consider checking out other posts in the series:
- {% if prev %} - Previously: {{ prev.title }}
- {% endif %} - {% if next %} - Next: {{ next.title }}
- {% endif %} -

- {% endif %} - -
-- cgit v1.2.3