]> git.r.bdr.sh - rbdr/forum/blob - app/forum.svelte
Add svelte frontend
[rbdr/forum] / app / forum.svelte
1 <script>
2 import ForumList from './components/forum_list/forum_list.svelte';
3 import Header from './components/header/header.svelte';
4
5 </script>
6
7 <main class="topic">
8 <h1>Is this really what the forum looks like?</h1>
9 <p class="topic-meta">
10 <span class="topic-location">Posted on <a href="/f/interaction">Interaction</a>.</span>
11 <span class="topic-ttl"><a href="/t/2a3fc567af8c897ca6f55fb5fj">3 days remaining</a>.</span>
12 </p>
13 <p class="topic-tags">
14 Tags:
15 <a href="/t/question">question<span class="tag-weight">(5)</span></a>
16 <a href="/t/meta">meta<span class="tag-weight">(34)</span></a>
17 <a href="/t/carrots">carrots<span class="tag-weight">(1)</span></a>
18 <a href="/t/tpbo">tpbo<span class="tag-weight">(2)</span></a>
19 </p>
20 <article class="post">
21 <footer>
22 <span class="post-author">By: <a href="/a/rbdr">rbdr</a>.</span>
23 <span class="post-date"><a href="/p/a80c70ea0120387123097ce1907ff">2018-08-14 03:32:10</a></span>
24 <p>So, I’m new here and I had heard a lot about the forums.<br><br>Is this really it??<br><br>It has barely any features, also I think I accidentaally created a post without a board? what’s up with that??</p>
25 </footer>
26 </article>
27 </main>
28 <Header />
29 <ForumList />
30
31 <style>
32 h1 {
33 color: magenta;
34 }
35 </style>