phantasma/app/templates/index.html

45 lines
1.4 KiB
HTML
Raw Normal View History

2021-09-28 13:10:22 +00:00
{% extends "base.html" %}
2021-10-30 15:38:11 +00:00
{% block head %}
2023-03-02 14:59:40 +00:00
<meta name="title" content="phantas.ma"/>
<meta name="description" content="phantas.ma"/>
<meta property="og:title" content="phantas.ma"/>
2021-10-30 16:02:56 +00:00
2023-03-02 14:59:40 +00:00
<meta property="og:url" content="https://phantas.ma"/>
2021-10-30 16:02:56 +00:00
<meta property="og:type" content="website"/>
2023-03-02 14:59:40 +00:00
<meta property="og:title" content="phantas.ma" />
<meta property="og:description" content="phantas.ma"/>
2021-10-30 16:02:56 +00:00
<meta property="twitter:card" content="summary_large_image"/>
2023-03-02 14:59:40 +00:00
<meta property="twitter:title" content="phantas.ma" />
<meta property="twitter:description" content="phantas.ma"/>
2021-10-30 15:38:11 +00:00
{% endblock head %}
2021-10-24 13:43:02 +00:00
{% block body_class%}animated animated-text body--home{% endblock %}
2021-09-28 13:10:22 +00:00
{% block main %}
<div class="index">
2021-11-22 12:59:43 +00:00
{% if featured %}
<div class="video-block">
2021-11-24 11:45:59 +00:00
<img src="{{ stream_prefix }}/{{ featured }}/timelineslitscan64pframe.jpg" class="video-fallback-block">
2021-11-22 12:59:43 +00:00
<video
id="timeline-video"
2021-11-24 11:45:59 +00:00
src="{{ stream_prefix }}/{{ featured }}/timelineslitscan64p.mp4"
poster="{{ stream_prefix }}/{{ featured }}/timelineslitscan64pframe.jpg"
2021-11-22 12:59:43 +00:00
controlsList="nodownload"
autoplay
loop
muted
playsinline>
</video>
</div>
{% endif %}
<div class="home">
<div class="box">
2023-03-02 14:59:40 +00:00
<h1 class="h1-en-home">Phantas.ma</h1>
2021-11-22 12:59:43 +00:00
<div class="font-size-sm">
2023-03-02 14:59:40 +00:00
{% for text in texts %}
<div class="h3"><a href="{{ text.get_absolute_url }}" class="font-bold">{{ text.title }}</a></div>
{% endfor %}
2021-11-22 12:59:43 +00:00
</div>
</div>
2021-10-24 13:43:02 +00:00
</div>
2021-10-10 15:06:43 +00:00
</div>
2021-09-28 13:10:22 +00:00
{% endblock %}