Jobboerse/packages/jobboerse/templates/base.hb
Lukas Drescher 357bf6aea2 Reintroduce footer
- Rename the `footer_links` to `header_links` in the config files
- Change links to point to the student association for computer science instead of the common website of both student associations
2026-03-13 23:17:46 +01:00

19 lines
456 B
Text

<!DOCTYPE html>
<html lang="{{base.short_lang}}">
<head>
<meta charset="utf-8"/>
<title>{{base.title}}</title>
{{#each base.styles as |style|}}
<link rel="stylesheet" href="{{style}}" />
{{/each}}
</head>
<body>
<div class="header-main">
{{> header}}
<main>
{{> @partial-block }}
</main>
</div>
{{> footer}}
</body>
</html>