aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-11-17 20:15:02 -0300
committerEuAndreh <eu@euandre.org>2024-11-17 20:18:21 -0300
commitcfd0246b241cb6e58153e68f7e30ed56b9bf054b (patch)
tree206deba2cec12187e835c64b8a7172277be1a2cf /_layouts/post.html
parentrm tests/assert-frontmatter.sh (diff)
downloadeuandre.org-cfd0246b241cb6e58153e68f7e30ed56b9bf054b.tar.gz
euandre.org-cfd0246b241cb6e58153e68f7e30ed56b9bf054b.tar.xz
Remove jekyll infrastructure setup
Diffstat (limited to '')
-rw-r--r--_layouts/post.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
deleted file mode 100644
index 345f781..0000000
--- a/_layouts/post.html
+++ /dev/null
@@ -1,43 +0,0 @@
----
-layout: default
----
-<div class="header">
- {{ site.t.posted_on[page.lang] }}
- {% include i18n-date.html date=page.date %}
-
- {% if page.updated_at %}
- <br />
- {{ site.t.updated_at[page.lang] }}
- {% include i18n-date.html date=page.updated_at %}
- {% endif %}
-</div>
-
-{% if page.audio %}
- {% assign ogg=page.url | replace_first: "/", "" | replace: ".html", ".ogg" %}
- <audio controls>
- <source src="{% link {{ ogg }} %}" type="audio/ogg" />
- </audio>
-
- <div class="torrent-link">
- <a href="{{ ogg | absolute_url | append: ".torrent" }}">torrent</a>
- </div>
-{% endif %}
-
-{% if page.video %}
- {% assign webm=page.url | replace_first: "/", "" | replace: ".html", ".webm" %}
- <video width="320" height="240" controls>
- <source src="{% link {{ webm }} %}" type="video/webm" />
- </video>
-
- <div class="torrent-link">
- <a href="{{ webm | absolute_url | append: ".torrent" }}">torrent</a>
- </div>
-{% endif %}
-
-{{ content }}
-
-<div class="post-footer">
- <p>
- {% include public-inbox.html %}
- </p>
-</div>