diff options
author | EuAndreh <eu@euandre.org> | 2020-12-28 18:49:01 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-28 18:49:01 -0300 |
commit | 096da941ef30a2ede762b8996961ee3fd522e1ca (patch) | |
tree | f39dceab407c2b2c9ec8312c04bc1919a13dd25d /_layouts/post.html | |
parent | .ignore all vendor/ path (diff) | |
download | euandre.org-096da941ef30a2ede762b8996961ee3fd522e1ca.tar.gz euandre.org-096da941ef30a2ede762b8996961ee3fd522e1ca.tar.xz |
post.html: Set default width of video
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index cb0e1b9..bff2f55 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -31,7 +31,7 @@ layout: default {% if page.video %} {% assign mkv=page.url | replace_first: "/", "" | replace: ".html", ".mkv" %} {% if site.flags.direct-video %} - <video controls> + <video width="320" height="240" controls> <source src="{% link {{ mkv }} %}" type="video/x-matroska"> </video> {% endif %} |