summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2021-01-06 22:45:47 -0700
committerBrian Picciano <mediocregopher@gmail.com>2021-01-07 17:18:42 -0700
commita264d457e9f6192754ee6618909a6cef3b193667 (patch)
tree33123366cde712d315d74d9d621ad03ba4aec1e2 /_layouts
parent8b2edc00be119cf8e767080d5535041ec17123cf (diff)
remove donation links, wrote up follow page, haven't linked it in yet
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html2
-rw-r--r--_layouts/home.html24
-rw-r--r--_layouts/page.html14
-rw-r--r--_layouts/post.html4
4 files changed, 4 insertions, 40 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 0aab111..5df9d6d 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -13,6 +13,8 @@
{{ content }}
</main>
+ {%- include footer.html -%}
+
</div>
</body>
diff --git a/_layouts/home.html b/_layouts/home.html
deleted file mode 100644
index 4a24765..0000000
--- a/_layouts/home.html
+++ /dev/null
@@ -1,24 +0,0 @@
----
-layout: default
----
-
-{%- if site.posts.size > 0 -%}
-<ul id="posts-list">
- {%- for post in site.posts -%}
- {%- if post.hide -%}{%- continue -%}{%- endif -%}
- <li>
- <h2>
- <a href="{{ post.url | relative_url }}">
- {{ post.title | escape }}
- </a>
- </h2>
- <span>{{ post.date | date: site.date_format }}</span>
- {%- if post.updated %}
- <span>(Updated {{ post.updated | date: site.date_format }})</span>
- {% endif -%}
- <p>{{ post.description }}</p>
- </li>
- {%- endfor -%}
-</ul>
-
-{%- endif -%}
diff --git a/_layouts/page.html b/_layouts/page.html
deleted file mode 100644
index 01e4b2a..0000000
--- a/_layouts/page.html
+++ /dev/null
@@ -1,14 +0,0 @@
----
-layout: default
----
-<article class="post">
-
- <header class="post-header">
- <h1 class="post-title">{{ page.title | escape }}</h1>
- </header>
-
- <div class="post-content">
- {{ content }}
- </div>
-
-</article>
diff --git a/_layouts/post.html b/_layouts/post.html
index 98a0536..6b97042 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,7 +1,7 @@
---
layout: default
---
-<article itemscope itemtype="http://schema.org/BlogPosting" style="margin-bottom: 50vh;">
+<article itemscope itemtype="http://schema.org/BlogPosting">
<header id="post-header">
<h1 id="post-headline" itemprop="name headline">
@@ -22,7 +22,7 @@ layout: default
</time>
{% endif -%}
- <span itemprop="about"><em>{{ page.description }}</em></span>
+ <description itemprop="about"><em>{{ page.description }}</em></description>
</div>
</header>