Fixed layout issues, added blog post, added date sorting, changed embed file, fixed old link

This commit is contained in:
Firq 2023-03-08 23:56:44 +01:00
parent 019fea9d00
commit ec61f2ff70
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
8 changed files with 129 additions and 17 deletions

View file

@ -18,7 +18,7 @@ if(descriptionOverride === undefined) {
description = descriptionOverride;
}
let currPage = "https://firq.pages.neshweb.net/"
let currPage = "https://firq.dev/"
if (currentpage !== "home") {
currPage += currentpage;
}

View file

@ -29,15 +29,13 @@ const { title } = Astro.props;
display: flex;
flex-flow: row wrap;
padding: 1em;
color: white;
font-size: 1em;
}
@media (min-width: 512px) {
div {
justify-content: left;
}
}
div {
color: white;
font-size: 1em;
}
</style>

View file

@ -14,7 +14,7 @@ const { title } = Astro.props;
</section>
<style>
h1 {
h1 {
color: white;
margin: 0.5rem 0px 0.5rem 0.5em;
padding: 0.25rem 0.75rem;
@ -22,12 +22,21 @@ const { title } = Astro.props;
background-color: var(--c-darkgray);
}
div {
display: block;
display: flex;
flex-flow: row wrap;
row-gap: 1em;
column-gap: 1em;
align-self: center;
align-items: stretch;
justify-content: space-around;
padding: 1em;
color: white;
font-size: 1em;
}
@media (min-width: 512px) {
div {
justify-content: left;
}
}
</style>