I have a template placement problem in the Bottle Framework, my tags from the User.html file are appearing at the bottom of the Base.html file, below, please help me appear inside the
Base File.html
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title></title>
</head>
<body style="padding: 10px;">
<nav class="navbar navbar-dark bg-dark">
{% for el in links %}
<a class="navbar-brand" href="/{{ el }}">{{ el }}</a>
{% endfor %}
</nav>
</body>
User.html file
{% include "Base.html"%}
{{message}}
Login
Password: Password: Login
Thank you!