-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tsx
25 lines (23 loc) · 1.03 KB
/
main.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/** @jsx h */
import blog, { ga, h, redirects } from "blog";
import { bgBlack, white } from "https://deno.land/[email protected]/fmt/colors.ts";
blog({
title: "GeauxWeisbeck4.dev Blog",
description:
"This blog is by Andrew Weisbeck and is the official GeauxWeisbeck4.dev blog. I hope you find it mentally stimulating, witty, and wholesome. All posts are of my own opinion, and do not represent the viewpoints of anybody else.",
// header: <header>Your custom header</header>,
// section: <section>Your custom section</section>,
// footer: <footer>Your custom footer</footer>,
avatar: "https://deno-avatar.deno.dev/avatar/29e6de.svg",
avatarClass: "rounded-full",
author: "Andrew Weisbeck",
links: [
{ title: "GitHub", url: "https://github.com/geauxweisbeck4" },
{ title: "Twitter", url: "https://twitter.com/geauxweisbeck4" },
{ title: "Homepage", url: "https://geauxweisbeck4.dev" },
{ title: "Mastodon.social", url: "https://fosstodon.org/@GeauxWeisbeck4" },
],
middlewares: [
ga("UA-221895221-2"),
],
});