fix(website): header terminology, copyright year, edit links, and blog post times (#3180)

* feat: matching terminology to homepage header

* fix: copyright year

* fix: edit url now links to DD repo

Closes #3177

* fix: adds ISO8601 date to blog posts

Fixes #3178
This commit is contained in:
Matthew Hatcher
2023-10-29 14:46:39 +00:00
committed by GitHub
parent dea4310e9f
commit a3e0c155ac
3 changed files with 6 additions and 8 deletions
+1
View File
@@ -3,6 +3,7 @@ slug: 19-changelog
title: V19 Changelog
authors: [skillz]
tags: [changelog]
date: 2023-02-28T23:07:48Z
---
# Changelog 19.0.0
@@ -3,6 +3,7 @@ slug: why-we-switched-from-deno-to-nodejs
title: 'From Deno to Node.js: Why We Made the Switch'
authors: [itohatweb, skillz]
tags: [deno, node.js, library]
date: 2023-04-03T17:01:03Z
---
# Our move from Deno to Node.js
+4 -8
View File
@@ -44,14 +44,10 @@ const config = {
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
'https://github.com/discordeno/discordeno/tree/main/website/',
},
blog: {
showReadingTime: true,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
},
theme: {
customCss: require.resolve('./src/styling/index.css'),
@@ -76,7 +72,7 @@ const config = {
type: 'doc',
docId: 'intro',
position: 'left',
label: 'Tutorial',
label: 'Documentation',
},
{ to: '/blog', label: 'Blog', position: 'left' },
{
@@ -98,7 +94,7 @@ const config = {
title: 'Docs',
items: [
{
label: 'Tutorial',
label: 'Documentation',
to: '/docs/intro',
},
],
@@ -126,7 +122,7 @@ const config = {
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} 2021-2023, Discordeno.`,
copyright: `Copyright © 2021-${new Date().getFullYear()}, Discordeno.`,
},
prism: {
theme: lightCodeTheme,