Kumi
6324579b36
Adjusted the formatting in the base.html template for better readability and consistency. This includes changes to indentation, the self-closing of meta tags, and the simplification of the main block. These adjustments make the code cleaner and more in line with modern HTML practices, potentially easing future maintenance and readability.
27 lines
710 B
HTML
27 lines
710 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% if title %}{{ title }} - {% endif %}Structables</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ url_for('static', filename='css/style.css') }}"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ url_for('static', filename='dist/css/bootstrap.min.css') }}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
href="{{ url_for('static', filename='img/logo.png') }}"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
{% include "header.html" %}
|
|
<main>{% block content %} {% endblock %}</main>
|
|
{% include "footer.html" %}
|
|
</body>
|
|
</html>
|