django_md_blog/blog/templates/blog/base.html

13 lines
153 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>My Blog</title>
</head>
<body>
<h1>My Blog</h1>
{% block content %}
{% endblock %}
</body>
</html>