You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
{% load staticfiles %}<!DOCTYPE html> |
|
<html class="no-js" lang="fr"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta http-equiv="x-ua-compatible" content="ie=edge"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
|
<title> |
|
{% block title %}{% endblock %} |
|
{% block title_suffix %}- resthys{% endblock %} |
|
</title> |
|
|
|
<meta name="description" content=""> |
|
<meta name="keywords" content=""> |
|
|
|
{% block css %} |
|
<link rel="stylesheet" href="{% static "css/app.css" %}"> |
|
{% endblock %} |
|
|
|
{% block extra_head %}{% endblock %} |
|
</head> |
|
<body> |
|
<div class="container"> |
|
|
|
{% if messages %} |
|
{% for message in messages %} |
|
<div class="callout{% if message.tags %} {{ message.tags }}{% endif %}">{{ message }}</div> |
|
{% endfor %} |
|
{% endif %} |
|
|
|
{% block content %} |
|
<p>Utilisez ce modèle pour démarrer rapidement une nouvelle application.</p> |
|
{% endblock %} |
|
|
|
</div><!-- .container --> |
|
|
|
{% block modal %}{% endblock %} |
|
|
|
{% block javascript %} |
|
<script src="{% static "js/app.js" %}"></script> |
|
{% endblock %} |
|
</body> |
|
</html>
|
|
|