Template inheritance
Base Template
<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<link rel="stylesheet" href="styles.css" />
<title>{% block title %}{% endblock %} - My Blog</title>
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
<a href="https://linkedin.com/">Linkedin</a>.
{% endblock %}
</div>
</body>
</html>Child Template
References
Last updated