gock
This commit is contained in:
parent
6a9dc685e7
commit
9e22e59053
12 changed files with 123 additions and 58 deletions
30
App/src/Components/BlogPost.astro
Normal file
30
App/src/Components/BlogPost.astro
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
const { title, description, date, url } = Astro.props;
|
||||
---
|
||||
|
||||
<div>
|
||||
<span><strong><a href={url}>{title}</a></strong><i>{date}</i></span>
|
||||
<p>{description}</p>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
div {
|
||||
border-left: #44475a solid;
|
||||
border-right: #44475a solid;
|
||||
border-top: #44475a solid;
|
||||
border-bottom: #44475a solid;
|
||||
border-width: 1px;
|
||||
padding: 15px;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: unset
|
||||
}
|
||||
span {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
justify-content: space-between;
|
||||
}
|
||||
p {margin: 0}
|
||||
|
||||
</style>
|
|
@ -3,12 +3,12 @@
|
|||
---
|
||||
|
||||
<div>
|
||||
<span><a href="https://matthil.de/">Mat/</a></span>
|
||||
<span><a href="http://mayu.space/">Mayu/</a></span>
|
||||
<span><a href="https://dd86k.space/">DD/</a></span>
|
||||
<span><a href="https://kiyoshi.games/">Kiyo/</a></span>
|
||||
<span><a href="https://github.com/PricedOx">Wiki/</a></span>
|
||||
<span><a href="https://reimu.info/">Mari/</a></span>
|
||||
<span><a href="https://matthil.de/">Mat/</a></span>
|
||||
<span><a href="https://dd86k.space/">DD/</a></span>
|
||||
<span><a href="https://kiyoshi.games/">Kiyo/</a></span>
|
||||
<span><a href="https://github.com/PricedOx">Wiki/</a></span>
|
||||
<span><a href="https://gock.mom">Nao/</a></span>
|
||||
<span><a href="https://arci.me">Augocka/</a></span>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
|
@ -20,4 +20,4 @@
|
|||
text-decoration: none;
|
||||
color: #ffb86c;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue