13 lines
265 B
HTML
13 lines
265 B
HTML
|
<!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>
|