aotds-docks/src/routes/(editor)/+layout.svelte

27 lines
407 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-08 20:07:16 +00:00
<a href="/editor">
<i>edit</i>
<span>editor</span>
</a>
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>
2023-05-08 20:07:16 +00:00
<span>export</span>
2023-04-23 14:53:19 +00:00
</a>
2023-05-08 20:07:16 +00:00
<a href="/import">
<i>input</i>
<span>import</span>
2023-04-23 14:53:19 +00:00
</a>
</nav>
<slot />
<style>
nav {
margin-top: 70px;
}
</style>