refactoring html and css

This commit is contained in:
bronkuu 2026-06-15 14:43:50 +02:00
parent 8194cea85e
commit a91b196e64
16 changed files with 1299 additions and 1383 deletions

View file

@ -9,28 +9,26 @@ templ Layout(title string, main templ.Component) {
<title>{ title } — Zamówienia ciast</title>
<link rel="stylesheet" href="/static/fonts/inter.css" />
<link rel="stylesheet" href="/static/fonts/material.css" />
<link rel="stylesheet" href="/static/style.css" />
<script src="/static/htmx2.04.js" defer></script>
<script src="/static/order.js"></script>
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<aside class="sidebar">
@Nav()
</aside>
<div class="app-body">
<main>
<header class="topnav">
<div class="topnav-left">
<h1 class="topnav-title">{ title }</h1>
</div>
<h1>{ title }</h1>
</header>
<div class="main-content">
@main
</div>
</div>
</main>
<script>
(function() {
var path = window.location.pathname;
var links = document.querySelectorAll('.sidebar-link');
var links = document.querySelectorAll('.link');
for (var i = 0; i < links.length; i++) {
if (links[i].getAttribute('href') === path) {
links[i].classList.add('active');