more shit !!!

pull/1/head
Drake 2 years ago
parent 7f5bbb0f30
commit 9f600c91b4

@ -0,0 +1,57 @@
---
import '../css/font.css'
import '../css/color.css'
const {content} = Astro.props;
---
<html lang="en">
<!--TODO: set meta tags for discord embed-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>{content.title}</title>
<style>
a + a {
margin-left: 5px;
} /*i will kill you if this breaks other parts of the site*/
.footer {
position: fixed;
bottom: 0;
left: 0px;
width: 100%;
height: 100;
}
.white {
background-color: #222222;
}
.grey {
color: #ffffff;
}
.padding {
position: relative;
left: 10px;
}
.padding-right {
position: relative;
right: 10px;
}
</style>
</head>
<body>
<h2>{content.title}</h2>
<h3>{content.description}</h3>
<slot />
<div id="footer" class="white">
<footer class="white footer">
<p>
<center>
<a href="/blog" class="grey padding">Back to Blog Home</a>
</center>
<!--<span class = "grey padding-right" style = "font-size: small; float: right; position: fixed; bottom: 50">&copy; 2020-2022 Ruthenic</span>-->
</p>
</footer>
</div>
</body>

@ -1,5 +1,5 @@
---
import Base from '../layout/Normal.astro'
import Base from '../layout/Base.astro'
---
<Base title="ruthenic.com: About Us">

@ -1,5 +1,5 @@
---
import Base from '../../layout/Normal.astro'
import Base from '../../layout/Base.astro'
import BlogList from '../../components/blogList.astro'
---

@ -1,4 +1,5 @@
---
layout: ../../layout/BaseBlog.astro
title: hello, world
description: this is a funny description
date: Monday, February 14 2022

@ -1,5 +1,5 @@
---
import Base from '../layout/Normal.astro'
import Base from '../layout/Base.astro'
---
<Base title="ruthenic.com: Homepage">

@ -1,5 +1,5 @@
---
import Base from '../layout/Normal.astro'
import Base from '../layout/Base.astro'
---
<Base title="ruthenic.com: Example Page">

Loading…
Cancel
Save