Kumi
83ed63b13f
Improved the base template by setting the default language to English, enhancing SEO through better ordering of meta and title tags, and including an initial-scale for the viewport meta tag. Wrapped the main content area with a `<main>` tag to improve semantic HTML structure and accessibility. These changes make the site more accessible and potentially improve search engine rankings.
22 lines
No EOL
661 B
HTML
22 lines
No EOL
661 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> |