]>
Commit | Line | Data |
---|---|---|
a7cf03c1 | 1 | <script lang="ts"> |
cac85db0 | 2 | import type { TopicAction } from '$lib/stores/action'; |
a7cf03c1 | 3 | export let actions: TopicAction; |
55fb920b RBR |
4 | |
5 | import { _ } from 'svelte-i18n'; | |
6 | </script> | |
7 | ||
8 | <li> | |
cac85db0 RBR |
9 | <a href="/reply/{actions.id}" title={$_('header.action.reply.title')}> |
10 | {@html $_('header.action.reply.display')} | |
11 | </a> | |
55fb920b RBR |
12 | </li> |
13 | ||
14 | <style> | |
15 | li { | |
16 | display: inline; | |
17 | margin: 5px; | |
18 | } | |
19 | ||
20 | a { | |
21 | text-decoration: none; | |
22 | line-height: 3em; | |
23 | display: inline-block; | |
24 | } | |
25 | </style> |