diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-01 00:56:06 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-01 00:56:06 +0200 |
| commit | a7cf03c192470cbab13edeb1aec99e0c66dede10 (patch) | |
| tree | 581b4430d1de958dcb666bae80a7678332134602 /src/lib/components/header/header.svelte | |
| parent | 010f307346e525ac2e4239a0549d2c1a4d6d102b (diff) | |
Update / use typescript
Diffstat (limited to 'src/lib/components/header/header.svelte')
| -rw-r--r-- | src/lib/components/header/header.svelte | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/lib/components/header/header.svelte b/src/lib/components/header/header.svelte new file mode 100644 index 0000000..e6c9348 --- /dev/null +++ b/src/lib/components/header/header.svelte @@ -0,0 +1,63 @@ +<script lang="ts"> + import { _ } from 'svelte-i18n'; + import { version } from '$lib/config/config'; + import { topicActions } from '$lib/stores/actions'; + import TopicActions from '$lib/components/actions/topic.svelte'; +</script> + +<header title={$_('header.title')}> + <ul> + <li> + <strong + ><a href="/" title={$_('header.long_version', { values: { version } })} + >{$_('header.short_version', { values: { version } })}</a + ></strong + > + </li> + <li> + <a href="/new" title={$_('header.action.new.title')} + >{@html $_('header.action.new.display')}</a + > + </li> + {#if $topicActions} + <TopicActions actions={$topicActions} /> + {/if} + <li> + <a href="/search" title={$_('header.action.search.title')} + >{@html $_('header.action.search.display')}</a + > + </li> + <li> + <a href="/logout" title={$_('header.action.log_out.title')} + >{@html $_('header.action.log_out.display')}</a + > + </li> + </ul> +</header> + +<style> + header { + grid-column: col-start 1 / span 12; + border-bottom: 1px solid black; + } + + ul { + padding: 0; + } + + li { + display: inline; + margin: 5px; + } + + a { + text-decoration: none; + line-height: 3em; + display: inline-block; + } + + strong a { + color: blue; + text-decoration: underline; + } +</style> |