- 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
20 lines
760 B
Text
20 lines
760 B
Text
<footer class="footer">
|
|
<nav class="menu">
|
|
{{#each base.footer_links as |link|}}
|
|
<a class="footer-item" href="{{link.url}}">
|
|
<h3 class="inline">{{link.title}}</h3>
|
|
</a>
|
|
{{/each}}
|
|
<a class="footer-item" href="{{base.routes.licenses}}">
|
|
<h3 class="inline">Drittanbieter-Lizenzen</h3>
|
|
</a>
|
|
{{#if user}}
|
|
<label class="footer-item" for="submit-sync" tabindex="0">
|
|
<h3 class="inline" title="Reload Joboffer Metadata from Disk">Re-Sync</h3>
|
|
<form class="hidden" method="post" action="{{base.routes.sync}}">
|
|
<input type="submit" id="submit-sync" class="hidden">
|
|
</form>
|
|
</label>
|
|
{{/if}}
|
|
</nav>
|
|
</footer>
|