Then run these commands::
- git clone git://git.forge.ircam.fr/Manifeste.git
+ git clone git://git@git.forge.ircam.fr/Manifeste.git
cd Manifeste
docker-compose up db
Paths
============
-- `app/festival/templates` : Personnal templates
-- `app/festival/static/festival` : Static files
\ No newline at end of file
+- `app/templates` : Main templates
+- `app/festival/templates` : Personal templates
+- `app/festival/static` : Static files
{% load i18n %}
{% load mezzanine_tags keyword_tags %}
-{% block main %}
-
-<div class="artist-name">
- <h2>{{ artist.name }}</h2>
-</div>
+{% block title %}
+{{ artist.name }}
+{% endblock %}
+{% block main %}
<div class="artist-bio">
<p>
{% if artist.photo %}
{% endfor %}
<a href="#" class="artist__event__cta">Réserver</a>
</div>
-
{% endblock %}
{% load i18n %}
{% load mezzanine_tags keyword_tags %}
-{% block main %}
-
{% block title %}
{% trans "Artists" %}
{% endblock %}
+{% block main %}
<div class="artist__list">
<div class="artist__sizer"></div>
{% for artist in object_list %}
</div>
{% endfor %}
</div>
-
{% endblock %}
{% load i18n %}
{% load mezzanine_tags keyword_tags %}
-{% block main %}
-
-<div class="video-title">
- <h1>{{ video.title }}</h1>
-</div>
+{% block title %}
+{{ video.title }}
+{% endblock %}
+{% block main %}
<div class="video-description">
{{ video.description }}
</div>
<h2>{% trans 'Related event' %}</h2>
{{ video.event.title }}
</div>
-
{% endblock %}