diff --git a/src/components/Header.astro b/src/components/Header.astro index 504d90b..f28475b 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -24,7 +24,7 @@ const {current} = Astro.props; / journal / - + {/* sharefeed / me @@ -32,8 +32,8 @@ const {current} = Astro.props; cool / rss - - more + */} + more diff --git a/src/layouts/PostLayout.astro b/src/layouts/PostLayout.astro index 51dd605..4b3060d 100644 --- a/src/layouts/PostLayout.astro +++ b/src/layouts/PostLayout.astro @@ -19,6 +19,8 @@ const headings = await Astro.props.headings const title = fm.title ?? 'blog post' +const ogImageUrl = "https://eleboog.com/blog/blogbanner.png" + const numberToWord = (num: number) => { switch(num) { case 1: return "one"; @@ -38,6 +40,21 @@ const numberToWord = (num: number) => { {title ? title + ' - eleboog.com' : 'eleboog.com'} + + {/* open graph babeeeee */} + + + + + + + + + + + + +
diff --git a/src/layouts/StandaloneMDXLayout.astro b/src/layouts/StandaloneMDXLayout.astro index 8518fb1..e9b6a72 100644 --- a/src/layouts/StandaloneMDXLayout.astro +++ b/src/layouts/StandaloneMDXLayout.astro @@ -8,10 +8,13 @@ import Header from '../components/Header.astro' import Footer from '../components/Footer.astro' import HR from '../components/HR.astro' +import { flatMap } from 'lodash' const { frontmatter } = Astro.props -const title = frontmatter.slug ?? 'me' +const title = frontmatter.slug ?? 'whoops' + +const ogImageUrl = "https://eleboog.com/blog/blogbanner.png" --- @@ -23,6 +26,19 @@ const title = frontmatter.slug ?? 'me' {title ? title + ' - eleboog.com' : 'eleboog.com'} + + {/* open graph babeeeee */} + + + + + + + + + + +
diff --git a/src/pages/blog.astro b/src/pages/blog.astro index 475f095..af4fb8a 100644 --- a/src/pages/blog.astro +++ b/src/pages/blog.astro @@ -15,7 +15,7 @@ const archives = await getCollection('archives'); --- - +

Blog Archive

This is a list of all blog posts that have ever been posted on this site.

diff --git a/src/pages/me.mdx b/src/pages/me.mdx index dcb7a9f..780db98 100644 --- a/src/pages/me.mdx +++ b/src/pages/me.mdx @@ -3,6 +3,7 @@ layout: '../layouts/StandaloneMDXLayout.astro' title: Me! date: 1970-01-01 summary: "A page for stuff about me and what I'm doing." +slug: me draft: true --- diff --git a/src/pages/more.mdx b/src/pages/more.mdx index 53cb99f..76cdadc 100644 --- a/src/pages/more.mdx +++ b/src/pages/more.mdx @@ -3,18 +3,21 @@ date: 1970-01-01 layout: '../layouts/StandaloneMDXLayout.astro' title: More Pages slug: more +summary: Other miscleaneous pages on my website. --- Want to see even more stupid stuff that I've been up to? Here you go! -[sharefeed - A collection of links to things that are interesting](/sharefeed) +- [sharefeed - A collection of links to things that are interesting](/sharefeed) -[me - An "about me" page and a whole lot more](/me)\ +- [me - An "about me" page and a whole lot more](/me)\ If you are a fan of slash pages, try throwing some into the URL and see what happens! For example, [/colophon](/colophon) or [/chipotle](/chipotle) :3 -[cool - A miscellaneous resource of cool stuff I want to draw more attention to](/cool) +- [cool - A miscellaneous resource of cool stuff I want to draw more attention to](/cool) -[rss - Want to keep tabs on what I make? This is the best way to do it](/rss)\ +- [rss - Want to keep tabs on what I make? This is the best way to do it](/rss)\ If you need an RSS client and are on iOS and/or macOS, check out [NetNewsWire](https://netnewswire.com/) (not sponsored, it's just what -I use lol) \ No newline at end of file +I use lol) + +If you have suggestions for what else to put on my website, please let me know ^w^ \ No newline at end of file