site data, twitter/opengraph headers

This commit is contained in:
Joshua Seigler 2024-06-07 15:39:27 -04:00
parent 42818405c1
commit 7cd73f703f
14 changed files with 52 additions and 16 deletions

9
site/_data/site.js Normal file
View file

@ -0,0 +1,9 @@
const isDev = process.env.ELEVENTY_ENV === "development";
const baseUrl = isDev ? "localhost:8080" : "https://joshua.seigler.net/";
module.exports = {
title: "joshua.seigler.net",
description: "Personal homepage of Joshua Seigler",
baseUrl,
};