so far today I've gone through a number of bizarre errors with my learning of Flask framework and the current one that makes no sense at all to me is how Jinja/Flask is able to render a <head>
element inside a <body>
tag. It does this on all my child templates and I believe that my code is exactly like my two tutorial videos tell me to. I cannot imagine why it does this and how my code is wrong, all of the other {% block %}
tags work normally.
Here is my base template:
<!doctype html><html lang="en"><head><title> {% block title %} ⚠!⚠!⚠!⚠!⚠ {% endblock %}</title><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/noauth.css') }}" /><link rel="icon" href="{{ url_for('static', filename='styles/favicon.png') }}" type="image/png" /></head><body><div class="container"> {% block content %} {% endblock %}</div></body></html>
Here is my child template (one example):
{% extends "base.html" %}{% block title %} !⚠ Access Denied! ⚠! {% endblock %}{% block content %}<div class=""><center><h1>Yo, go <a href="{{ url_for('index') }}"><big>BACK</big></a> and put the password in!</h1></center></div><br/>{% endblock %}
Here is what it's doing on all child templates that inheret base.html
:
I'm wondering what's possible that sublime text has ruined my code. A couple of comments online I saw mentioned it but that seems very illogical, despite I did indeed have some text editor problems.
I have thinned my entire code and tried a process of elimination on every logical angle that I could think of to see where something has changed. The logic of this error evades me.