citra-web/site/themes/citra-bs-theme/layouts/shortcodes/mp4.html
sakuramipha e95b9d1961
Progress Report 2023 Q2 (#181)
* Initial push

* Add banner

* article: Address review comments

* article: Address review comments pt. 2

* shortcodes: Fix mp4 size

* Fix some errors (#1)

* Fix some errors

* Address feedback

* new juxtapose and media descriptions

* fix media

* Add missing stuff (#2)

* Add missing stuff

* Another small home menu fix

* Fix build isses from outdated packages

* Address reviews

* Address review comments pt. 3

* change date for release

* resize juxtapose images

---------

Co-authored-by: FearlessTobi <thm.frey@gmail.com>
Co-authored-by: GPUCode <47210458+GPUCode@users.noreply.github.com>
2023-07-18 13:40:04 -07:00

16 lines
486 B
HTML

<figure>
<div style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;">
<video preload="auto" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" controls>
<source src="{{ .Get "src" }}" type="video/mp4">
Your browser doesn't support mp4 video. :(
</video>
</div>
{{ with .Get "title" }}
<figcaption>
<h4>
{{ . }}
</h4>
</figcaption>
{{ end }}
</figure>