Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
colepeters committed Jun 24, 2023
1 parent 756f0ba commit 50c81bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
10 changes: 5 additions & 5 deletions app/head.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ import { getLinkTag } from '@enhance/arc-plugin-styles/get-styles'

export default function Head() {
const siteUrl = process.env.SITE_URL || 'http://localhost:3333'
const me = null // Ex. 'https://social.example.com/@username'
return`
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Monotonous Processes</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name='viewport' content='width=device-width, initial-scale=1'>
${getLinkTag()}
<link rel='stylesheet' href='/_public/css/global.css' />
<link rel='stylesheet' href='/_public/css/a11y-dark.min.css' />
<link rel="webmention" href="${siteUrl}/webmention">
${me ? `<link href="${me}" rel="me">` : ''}
<link rel='webmention' href='${siteUrl}/webmention'>
<link href='https://colepeters.com' rel='me'>
<link href='https://mastodon.online/@colepeters' rel='me'>
<link href='https://instagram.com/titledspheres' rel='me'>
<style>
@font-face {
font-family: EB Garamond;
Expand Down
7 changes: 0 additions & 7 deletions public/css/a11y-dark.min.css

This file was deleted.

8 changes: 4 additions & 4 deletions src/plugins/create-rss-feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ async function generate () {
)

const feed = new Feed({
title: 'Enhance Blog Template',
description: "My blog description.",
title: 'Monotonous Processes',
description: 'A personal weblog by Cole Peters',
id: hostname,
link: hostname,
language: 'en',
copyright: `All rights reserved ${new Date().getFullYear()}, My Company`,
copyright: `All rights reserved ${new Date().getFullYear()} Cole Peters`,
generator: hostname + ' via Feed for Node.js',
author: {
name: 'My Company',
name: 'Cole Peters',
link: hostname,
},
})
Expand Down

0 comments on commit 50c81bf

Please sign in to comment.