aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-01-01 22:13:05 -0300
committerEuAndreh <eu@euandre.org>2021-01-01 22:13:05 -0300
commitbed651a29c4d3f8517a0d30034520e4b76644a71 (patch)
tree0993933c01c0da446dcf95acd1d024f856fb9d30 /_layouts/post.html
parentdefault.nix: Add music flag (diff)
downloadeuandre.org-bed651a29c4d3f8517a0d30034520e4b76644a71.tar.gz
euandre.org-bed651a29c4d3f8517a0d30034520e4b76644a71.tar.xz
post.html: Add trailing '/' to source tag
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 28af9ce..c6a7c29 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -15,7 +15,7 @@ layout: default
{% if page.audio %}
{% assign ogg=page.url | replace_first: "/", "" | replace: ".html", ".ogg" %}
<audio controls>
- <source src="{% link {{ ogg }} %}" type="audio/ogg">
+ <source src="{% link {{ ogg }} %}" type="audio/ogg" />
</audio>
<div class="torrent-link">
@@ -30,7 +30,7 @@ layout: default
{% assign webm=page.url | replace_first: "/", "" | replace: ".html", ".webm" %}
{% if site.flags.direct-video %}
<video width="320" height="240" controls>
- <source src="{% link {{ webm }} %}" type="video/webm">
+ <source src="{% link {{ webm }} %}" type="video/webm" />
</video>
{% endif %}