- 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
19 lines
456 B
Text
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>
|