feat: Add main CSS styles for the application
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
This commit is contained in:
5
templates/partials/base_footer.html
Normal file
5
templates/partials/base_footer.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<footer class="site-footer">
|
||||
<div class="container footer-inner">
|
||||
<p>© {{ current_year }} CalMiner. All rights reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
17
templates/partials/base_header.html
Normal file
17
templates/partials/base_header.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<header class="site-header">
|
||||
<div class="container header-inner">
|
||||
<h1 class="site-title">CalMiner</h1>
|
||||
<nav class="site-nav" aria-label="Primary navigation">
|
||||
<a href="/ui/dashboard">Dashboard</a>
|
||||
<a href="/ui/scenarios">Scenarios</a>
|
||||
<a href="/ui/parameters">Parameters</a>
|
||||
<a href="/ui/costs">Costs</a>
|
||||
<a href="/ui/consumption">Consumption</a>
|
||||
<a href="/ui/production">Production</a>
|
||||
<a href="/ui/equipment">Equipment</a>
|
||||
<a href="/ui/maintenance">Maintenance</a>
|
||||
<a href="/ui/simulations">Simulations</a>
|
||||
<a href="/ui/reporting">Reporting</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
Reference in New Issue
Block a user