{% extends "basic_app/base.html" %}
{% block body_block %}
{% include "includes/_messages.html" %}
# base.html
{% extends "basic_app/base.html" %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Base</title>
</head>
<body>
<nav class="navbar navbar-default navbar-static-top">
</nav>
<div class="container">
{% block body_block %}
{# Anything outside of this will be inherited if you use extend.#}
{% endblock %}
</div>
</body>
</html>
index.html繼承base.html的navbar
{% extends "basic_app/base.html" %}
{% block body_block%}
<h1>This is the index.html page</h1>
{% endblock %}
沒有留言:
張貼留言