phantasma/app/templates/index.html

45 lines
1.4 KiB
HTML
Raw Normal View History

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