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

33 lines
504 B
Svelte
Raw Normal View History

2023-04-23 14:53:19 +00:00
<nav class="m l left">
2023-04-24 15:47:38 +00:00
<!-- set them as active -->
2023-05-04 23:38:39 +00:00
<a href="/export/print">
<i>print</i>
<span>print</span>
</a>
2023-04-23 14:53:19 +00:00
<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>