gpp/port/templates/base.html

45 lines
1.7 KiB
HTML
Raw Permalink Normal View History

{% load dict %}
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}{% firstof settings.title "Titre par defaut" %}{% endblock %}</title>
<meta name="description"
content="{% block description %}
{% firstof settings.description "Description" %}
{% endblock %}">
<meta name="author"
content="{% block author %}
{% firstof settings.author "Author" %}
{% endblock %}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{% static "fonts/junction.css" %}">
<link rel="stylesheet" href="{% static "css/normalize.css" %}">
<link rel="stylesheet" href="{% static "css/skeleton.css" %}">
<link rel="stylesheet" href="{% static "css/gpp.css" %}">
<link rel="icon" type="image/png" href="{% static "images/favicon.png" %}">
2019-06-08 21:02:25 +02:00
<script src="{% static "js/jquery-3.4.1.min.js" %}"></script>
<script src="{% static "js/main.js" %}"></script>
<!--
2019-06-08 21:02:25 +02:00
<link href="{% static "css/bootstrap.css" %}" rel="stylesheet" type="text/css"/>
<script src="{% static "js/bootstrap.js" %}"></script>
-->
</head>
<body>
<div class="container">
{% block content %}
<div class="row">
<div class="one-half column" style="margin-top: 25%">
<h4>Basic Page</h4>
<p>This index.html page is a placeholder with the CSS, font and favicon. It's just waiting for you to add some content! If you need some help hit up the <a href="http://www.getskeleton.com">Skeleton documentation</a>.</p>
</div>
</div>
{% endblock %}
</div>
</body>
</html>