mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user