Titan/webapp/titanembeds/templates/index.html.j2

18 lines
965 B
Plaintext
Raw Normal View History

{% extends 'site_layout.html.j2' %}
{% set title="Index" %}
{% block content %}
2017-09-18 00:15:46 +02:00
<h1 class="center-align">Embed Discord like a<br><strong>True Titan</strong></h1>
<p class="flow-text center-align">Add <strong>Titan</strong> to your Discord server to create your own personalized chat embed!</p>
<a class="waves-effect waves-light btn btn-large center_content" href="{{ url_for('user.dashboard') }}">Start here!</a>
<br /><br />
<div style="display: flex;align-items: center;">
<video preload="true" autoplay loop muted style="width:100%; border-radius: 10px;">
2017-09-18 00:15:46 +02:00
<source src="{{url_for('static', filename='video/v2/titanembeds.mp4')}}" type="video/mp4">
<source src="{{url_for('static', filename='video/v2/titanembeds.webm')}}" type="video/webm; codecs=vp8, vorbis">
<source type="video/ogg; codecs=theora, vorbis" src="{{url_for('static', filename='video/v2/titanembeds.ogg')}}">
2017-04-07 09:04:05 +02:00
Your browser does not support the video tag.
</video>
</div>
{% endblock %}