2019-06-25 23:43:23 +02:00
{% load dict %}
2019-06-05 20:06:51 +02:00
{% 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 " % } " >
2019-06-23 14:42:06 +02:00
< link rel = "stylesheet" href = "{% static " css / gpp . css " % } " >
2019-06-05 20:06:51 +02:00
< 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 >
2019-08-03 19:32:58 +02:00
< 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 >
-->
2019-06-05 20:06:51 +02:00
< / 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 >