2021-09-28 13:10:22 +00:00
|
|
|
{% extends "base.html" %}
|
2021-10-30 15:38:11 +00:00
|
|
|
{% block head %}
|
2021-11-24 11:50:26 +00:00
|
|
|
<meta name="title" content="njp.ma"/>
|
|
|
|
<meta name="description" content="This archive was initiated in the context of CAMP After Media Promises"/>
|
|
|
|
<meta property="og:title" content="njp.ma"/>
|
2021-10-30 16:02:56 +00:00
|
|
|
|
2021-11-24 11:50:26 +00:00
|
|
|
<meta property="og:url" content="https://njp.ma"/>
|
2021-10-30 16:02:56 +00:00
|
|
|
<meta property="og:type" content="website"/>
|
2021-11-24 11:50:26 +00:00
|
|
|
<meta property="og:title" content="njp.ma" />
|
|
|
|
<meta property="og:description" content="This archive was initiated in the context of CAMP After Media Promises"/>
|
2021-10-30 16:02:56 +00:00
|
|
|
|
|
|
|
<meta property="twitter:card" content="summary_large_image"/>
|
2021-11-24 11:50:26 +00:00
|
|
|
<meta property="twitter:title" content="njp.ma" />
|
|
|
|
<meta property="twitter:description" content="This archive was initiated in the context of CAMP After Media Promises"/>
|
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 %}
|
2021-10-21 15:24:26 +00:00
|
|
|
<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">
|
|
|
|
<h1 class="h1-en-home">njp.ma</h1>
|
|
|
|
<div class="font-size-sm">
|
2021-11-24 09:11:56 +00:00
|
|
|
<div class="h3"><a href="{% url 'films'%}" class="font-bold">videos 비디오</a></div>
|
|
|
|
<div class="h3"><a href="{% url 'texts' %}" class="font-bold">cuts 장면들</a></div>
|
|
|
|
<div class="h3"><a href="{% url 'about' %}" class="font-bold">about 소개</a></div>
|
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 %}
|