File tree Expand file tree Collapse file tree 5 files changed +27
-12
lines changed Expand file tree Collapse file tree 5 files changed +27
-12
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,6 @@ const cacheBuster = require('@mightyplow/eleventy-plugin-cache-buster');
4
4
const htmlmin = require('html-minifier');
5
5
const { minify } = require('terser');
6
6
const siteSettings = require('./src/globals/site.json');
7
- const {
8
- version: eleventyVersion,
9
- } = require('./node_modules/@11ty/eleventy/package.json');
10
7
11
8
const dateFormatter = Intl.DateTimeFormat('en-US', {
12
9
year: 'numeric',
@@ -26,10 +23,6 @@ module.exports = function (eleventyConfig) {
26
23
return new Date().getFullYear().toString();
27
24
});
28
25
29
- eleventyConfig.addShortcode('eleventyVersion', function () {
30
- return `Eleventy ${eleventyVersion}`;
31
- });
32
-
33
26
eleventyConfig.addFilter('formatDateTime', function (date) {
34
27
return dateFormatter.format(date);
35
28
});
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: prose
3
+ title: Discord
4
+ ---
5
+
6
+ # Discord
7
+
8
+ We manage a Discord community to share resources from events, announcements,
9
+ and discuss JavaScript and web development topics. Join to network and keep the
10
+ conversations going outside the scheduled events.
11
+
12
+ <a
13
+ href="https://javascriptmn-discord-invite-bot.brianmitchl.workers.dev"
14
+ class="block text-center text-xl text-white font-semibold no-underline border-2 border-black p-4 bg-[#5865F2] hover:underline">
15
+ Join the Discord →
16
+ </a>
17
+
18
+ ## But What Happened to the Slack Team!?
19
+
20
+ Discord is in, Slack is out.
21
+ We created the Discord server in August 2022, replacing the Slack team we've
22
+ managed since January 2016.
Original file line number Diff line number Diff line change 4
4
"text": "RSVP"
5
5
},
6
6
{
7
- "href": "https://javascriptmn-slack.herokuapp.com ",
8
- "text": "Join our Slack "
7
+ "href": "/discord/ ",
8
+ "text": "Join the Discord "
9
9
},
10
10
{
11
11
"href": "https://www.youtube.com/channel/UC4DA_d8mD-14ZSBvIb1jmXg",
Original file line number Diff line number Diff line change 44
44
"text": "YouTube"
45
45
},
46
46
{
47
- "href": "https://javascriptmn-slack.herokuapp.com /",
48
- "text": "Slack "
47
+ "href": "/discord /",
48
+ "text": "Discord "
49
49
},
50
50
{
51
51
"href": "https://github.com/JavaScriptMN/",
Original file line number Diff line number Diff line change 4
4
<meta charset="utf-8" />
5
5
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6
6
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <meta name="generator" content="{% eleventyVersion % }">
7
+ <meta name="generator" content="{{ eleventy.generator } }">
8
8
<meta
9
9
name="description"
10
10
content="{{ description if description else site.description }}"
You can’t perform that action at this time.
0 commit comments