cup/storage/templates/app.html

17 lines
427 B
HTML
Raw Normal View History

2024-09-30 10:17:24 -04:00
<!DOCTYPE html>
<html lang="en">
2024-10-07 19:12:28 -04:00
{{template "page_head" "Sample page"}}
2024-09-30 10:17:24 -04:00
<body>
2024-10-07 19:12:28 -04:00
<div class="container">
<div class="row">
2024-10-29 13:44:51 -04:00
{{template "content_dropdown" .ContentDropdown}}
2024-10-07 19:12:28 -04:00
{{template "page_card" .PageCard}}
{{ define "page_card_content" }}
2024-10-29 13:44:51 -04:00
2024-10-07 19:12:28 -04:00
<img class="goffeelogo"src="/public/img/goffee.png" alt="Goffee logo" />
{{ end }}
</div>
</div>
{{template "page_footer"}}
2024-09-30 10:17:24 -04:00
</body>
2024-10-07 19:12:28 -04:00
</html>