diff options
Diffstat (limited to 'src/components/header/header.svelte')
| -rw-r--r-- | src/components/header/header.svelte | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/src/components/header/header.svelte b/src/components/header/header.svelte deleted file mode 100644 index dcf95d5..0000000 --- a/src/components/header/header.svelte +++ /dev/null @@ -1,63 +0,0 @@ -<script> - import { _ } from 'svelte-i18n'; - import { version } from '$/config/config'; - import { topicActions } from '$/stores/actions'; - import TopicActions from '$/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> |