diff options
author | EuAndreh <eu@euandre.org> | 2021-02-07 19:32:28 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-07 19:32:28 -0300 |
commit | b754f0337cdaa3366dff6251162c0da4b7816efd (patch) | |
tree | 2250f828609a99d5d7dc01284b0cc040cad73908 /_layouts/post.html | |
parent | Remove sample screencast (diff) | |
download | euandre.org-b754f0337cdaa3366dff6251162c0da4b7816efd.tar.gz euandre.org-b754f0337cdaa3366dff6251162c0da4b7816efd.tar.xz |
Remove direct-video and screencast flags: enable them by default
Diffstat (limited to '')
-rw-r--r-- | _layouts/post.html | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index c6a7c29..13dbf21 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -28,11 +28,9 @@ layout: default {% if page.video %} {% 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" /> - </video> - {% endif %} + <video width="320" height="240" controls> + <source src="{% link {{ webm }} %}" type="video/webm" /> + </video> <div class="torrent-link"> {% capture torrent-file %}{{ webm | absolute_url | append: ".torrent" }}{% endcapture %} |