mirror of
https://github.com/StefBuwalda/WebTech.git
synced 2025-10-30 11:19:58 +00:00
changes html pages
This commit is contained in:
@@ -9,9 +9,7 @@
|
||||
</head>
|
||||
<body>
|
||||
{% block content %}
|
||||
{% include "navbar_base.html" %}
|
||||
{% block navbar %}
|
||||
{% endblock %}
|
||||
{% include "navbar_base.html" %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
@@ -3,5 +3,5 @@
|
||||
{%block title%}Dashboard{%endblock%}
|
||||
|
||||
{%block content%}
|
||||
|
||||
<p>The dashboard will display here</p>
|
||||
{%endblock%}
|
||||
@@ -0,0 +1,7 @@
|
||||
{%extends "base_template.html"%}
|
||||
|
||||
{%block title%}Login{%endblock%}
|
||||
|
||||
{%block content%}
|
||||
|
||||
{%endblock%}
|
||||
@@ -1,7 +1,5 @@
|
||||
{%block navbar%}
|
||||
<nav class="navbar navbar-expand-lg bg-body-tertiary" data-bs-theme="dark">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="\dashboard">Dashboard</a>
|
||||
</div>
|
||||
</nav>
|
||||
{%endblock%}
|
||||
<nav class="navbar navbar-expand-lg bg-body-tertiary" data-bs-theme="dark">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="\dashboard">Dashboard</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user