feat: Refactor Dashboard template to extend base layout and improve structure feat: Enhance Parameter Input template with improved layout and feedback mechanisms feat: Update Scenario Form template to utilize base layout and improve user experience feat: Create base layout template for consistent styling across pages feat: Add Consumption, Costs, Equipment, Maintenance, Production, Reporting, and Simulations templates with placeholders for future functionality feat: Implement base header and footer partials for consistent navigation and footer across the application
18 lines
563 B
HTML
18 lines
563 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% block title %}CalMiner{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/css/main.css" />
|
|
{% block head_extra %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% include "partials/base_header.html" %}
|
|
<main id="content" class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
{% include "partials/base_footer.html" %} {% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|