aotds-docks/src/routes/export/+layout.svelte

33 lines
504 B
Svelte

<nav class="m l left">
<!-- set them as active -->
<a href="/export/print">
<i>print</i>
<span>print</span>
</a>
<a href="/export/json">
<i>output</i>
<span>json</span>
</a>
<a href="/export/yaml">
<i>output</i>
<span>yaml</span>
</a>
<!-- TODO
<a>
<i>Quiz</i>
<span>See also</span>
</a>
<a>
<i>Format_List_Bulleted</i>
<span>Changelog</span>
</a>
-->
</nav>
<slot />
<style>
nav {
margin-top: 70px;
}
</style>