mirror of
https://github.com/JonasunderscoreJones/blog.jonasjones.dev.git
synced 2025-10-22 21:29:18 +02:00
Changed Home page
This commit is contained in:
parent
59076f208a
commit
8512e24c8d
1 changed files with 19 additions and 2 deletions
|
@ -1,3 +1,20 @@
|
|||
<script lang="ts">
|
||||
import PostList from "../components/PostList.svelte";
|
||||
|
||||
export let searchquery: string = "";
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<h1>Welcome to my Blog!</h1>
|
||||
</div>
|
||||
<h1>--- Latest Blog Posts ---</h1>
|
||||
</div>
|
||||
|
||||
<PostList query={searchquery} />
|
||||
|
||||
<style>
|
||||
h1 {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 2em;
|
||||
margin-top: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue