diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2022-11-27 01:21:53 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2022-11-27 01:21:53 +1300 |
commit | 8e36b81714320657b7d06973daa4e769bb17de46 (patch) | |
tree | 6a9289d4e458ebcd8c4e7b9c42de0a90da1e701c /project/templates/vidframe/base_video.xhtml | |
parent | e75f04ce0747169b0f77aa55518982409cf9a876 (diff) |
Added ASCII fluid simulator article
Diffstat (limited to 'project/templates/vidframe/base_video.xhtml')
-rw-r--r-- | project/templates/vidframe/base_video.xhtml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/project/templates/vidframe/base_video.xhtml b/project/templates/vidframe/base_video.xhtml new file mode 100644 index 0000000..f298705 --- /dev/null +++ b/project/templates/vidframe/base_video.xhtml @@ -0,0 +1,26 @@ + +{%- extends "vidframe/base_vidframe.xhtml" -%} + + + +{%- block style %} + body { + margin: 0; + padding: 0; + } +{% endblock -%} + + + +{%- block video %} +<div> + <object type="video/mp4" + data="{%- block vidfile -%}{%- endblock -%}" + width="{%- block vidwidth -%}{%- endblock -%}" + height="{%- block vidheight -%}{%- endblock -%}"> + <a href="{%- block backup -%}{%- endblock -%}">Download video</a> + </object> +</div> +{% endblock -%} + + |