formation_django/exemple/mon_site/templates/base.html

13 lines
265 B
HTML
Raw Permalink Normal View History

2018-04-10 09:28:27 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Mon super blog</title>
<meta charset="utf-8"/>
</head>
<body>
<h1>Mon super titre qu'on verra partout</h1>
<a href="{% url 'blog:index' %}">Retour à l'accueil</a>
{% block content %}{% endblock %}
</body>
</html>