diff options
author | EuAndreh <eu@euandre.org> | 2021-01-01 22:13:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-01 22:13:05 -0300 |
commit | bed651a29c4d3f8517a0d30034520e4b76644a71 (patch) | |
tree | 0993933c01c0da446dcf95acd1d024f856fb9d30 | |
parent | default.nix: Add music flag (diff) | |
download | euandre.org-bed651a29c4d3f8517a0d30034520e4b76644a71.tar.gz euandre.org-bed651a29c4d3f8517a0d30034520e4b76644a71.tar.xz |
post.html: Add trailing '/' to source tag
-rw-r--r-- | _layouts/post.html | 4 |
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 %} |