Looking for some guidance with regards to flask, bootstrap and CSS. Apologies for any formatting issues, mobile, midnight, etc.
So I am basically creating a super simple website in Ubuntu using flask. For a very stripped down version:
*Layout came out strangely, basic layout here: https://drive.google.com/file/d/17OKhLQRwlIhP6lFwGcpXOgmpy4_yWhPn/view?usp=drivesdk *
Each of the html files calls the layout.html file with:
{% extends "layout.html" %}
{% block body_content %}
<p1> Example text here </p1>
{% endblock %}
And I am trying to have a unified header, font, footer,
etc etc etc.
My question is where my CSS, bootstrap, etc should go. Logically it seems styling should go in the CSS file, tagged to page layout in the layout files, and that somehow effects how/where the home page displays info, but I'm struggling to truly grok the connection between the css file, the layout file and the content of the actual page.
Any assistance or resources where I can get the info would be greatly appreciated. Thanks.