diff options
Diffstat (limited to '')
-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 %} |