From eef0fa33867a56ea08aedeb703058c8c0e1493fb Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 1 Jan 2021 12:50:07 -0300 Subject: post.html: Remove
tags --- _layouts/post.html | 71 +++++++++++++++++++++++++++--------------------------- styles.css | 4 +-- 2 files changed, 37 insertions(+), 38 deletions(-) diff --git a/_layouts/post.html b/_layouts/post.html index 8aafb9d..28af9ce 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,52 +1,51 @@ --- layout: default --- -
+
{{ site.t.posted_on[page.lang] }} {% include i18n-date.html date=page.date %} -
-{% if page.updated_at %} -
+ + {% if page.updated_at %} +
{{ site.t.updated_at[page.lang] }} {% include i18n-date.html date=page.updated_at %} -
-{% endif %} -
+ {% endif %} + - {% if page.audio %} - {% assign ogg=page.url | replace_first: "/", "" | replace: ".html", ".ogg" %} - +{% if page.audio %} + {% assign ogg=page.url | replace_first: "/", "" | replace: ".html", ".ogg" %} + - + +{% endif %} + +{% if page.video %} + {% assign webm=page.url | replace_first: "/", "" | replace: ".html", ".webm" %} + {% if site.flags.direct-video %} + {% endif %} - {% if page.video %} - {% assign webm=page.url | replace_first: "/", "" | replace: ".html", ".webm" %} - {% if site.flags.direct-video %} - - {% endif %} + +{% endif %} - - {% endif %} +{{ content }} - {{ content }} -
- + diff --git a/styles.css b/styles.css index d48d35c..2faf8ff 100644 --- a/styles.css +++ b/styles.css @@ -50,7 +50,7 @@ nav ul li a { /* Article bodies */ -section.header { +div.header { color: #555; font-size: 14px; font-style: italic; @@ -90,7 +90,7 @@ footer li a { margin-left: 5px; } -section.post-footer, div.footnotes { +div.post-footer, div.footnotes { border-top: 0.5px solid #555; } -- cgit v1.2.3