Fixing vertical alignment in videos pages
This commit is contained in:
@@ -1,14 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
{% include "head" %}
|
||||
<body>
|
||||
<div class="container">
|
||||
{% if video %}
|
||||
<video class="content" controls>
|
||||
<source src="{{ video }}" type="video/{{ kind }}">
|
||||
</video>
|
||||
<br><p class="content">{{title}}</p>
|
||||
{% else %}
|
||||
<p class="content">Nothing to see here</p>
|
||||
{% endif %}
|
||||
{% include "header" %}
|
||||
<body class="is-preload">
|
||||
<div id="wrapper">
|
||||
<header id="header">
|
||||
<div class="content">
|
||||
<div class="inner">
|
||||
<h1>{{ title }}</h1>
|
||||
<video controls>
|
||||
<source src="{{ video }}" type="video/{{ kind }}">
|
||||
</video>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
</body>
|
||||
<div id="bg"></div>
|
||||
</body>
|
||||
{% include "footer" %}
|
||||
Reference in New Issue
Block a user