Skip to content
Snippets Groups Projects
Commit e0104b10 authored by resynth1943's avatar resynth1943
Browse files

Change some stuff

parent 699b99d3
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,7 @@ module.exports = function(eleventyConfig) { ...@@ -14,6 +14,7 @@ module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(pluginSyntaxHighlight); eleventyConfig.addPlugin(pluginSyntaxHighlight);
eleventyConfig.addPlugin(pluginNavigation); eleventyConfig.addPlugin(pluginNavigation);
eleventyConfig.addPlugin(pluginSEO); eleventyConfig.addPlugin(pluginSEO);
redirect('/2020/03/14/The-Discord-privacy-scandal.html', '/articles/discord.html'); redirect('/2020/03/14/The-Discord-privacy-scandal.html', '/articles/discord.html');
redirect('/2020/05/02/Twitter-we-need-a-break.html', '/articles/twitter.html'); redirect('/2020/05/02/Twitter-we-need-a-break.html', '/articles/twitter.html');
......
--- ---
templateEngineOverride: liquid templateEngineOverride: liquid
author: resynth1943
--- ---
<!DOCTYPE html> <!DOCTYPE html>
<!-- Because who doesn't use English? :^) -->
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<!-- We need to keep this puppy responsive! -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title or brand.name }}</title> <title>{{ title or brand.name }}</title>
<meta name="description" content="{{ description or brand.description }}">
<!-- What would the internet be without STYLING?! -->
<link rel="stylesheet" href="/styling/main.css"> <link rel="stylesheet" href="/styling/main.css">
<link rel="stylesheet" href="/styling/footer.css"> <link rel="stylesheet" href="/styling/footer.css">
<link rel="stylesheet" href="/styling/home.css"> <link rel="stylesheet" href="/styling/home.css">
<link rel="stylesheet" href="/styling/header.css"> <link rel="stylesheet" href="/styling/header.css">
<link rel="stylesheet" href="/assets/fonts/manrope/manrope-v1-latin-regular.css"> <link rel="stylesheet" href="/assets/fonts/manrope/manrope-v1-latin-regular.css">
{% if env == 'production' %}
<script data-goatcounter="https://resynth1943.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script> <!-- Normal `meta` stuff: -->
{% endif %} <meta name="description" content="{{ description or brand.description }}">
<!-- <link rel="stylesheet" href="https://unpkg.com/nes.css/css/nes-core.min.css"> --> <meta name="robots" content="index,follow">
<meta name="author" content="resynth1943">
<!-- Don't want spiders to get a wrong impression. -->
<link rel="canonical" href="{{ page.url }}">
<!-- OpenGraph: https://ogp.me -->
<meta property="og:title" content="{{ title or brand.name }}">
<meta property="og:type" content="article">
<meta property="og:url" content="/responses/">
<meta property="og:description" content="{{ description or brand.description }}">
<!-- Twitter metadata, because why not...? -->
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="/responses/">
<meta name="twitter:title" content="{{ title or brand.name }}">
<meta name="twitter:description" content="{{ description or brand.description }}">
</head> </head>
<body> <body>
{% include header.html %} {% include header.html %}
...@@ -28,7 +49,10 @@ templateEngineOverride: liquid ...@@ -28,7 +49,10 @@ templateEngineOverride: liquid
{% include footer.html %} {% include footer.html %}
<!-- Goatcounter tracking code; see the analytics for this page: https://resynth1943.goatcounter.com/ --> <!-- Goatcounter tracking code; see the analytics for this page: https://resynth1943.goatcounter.com/ -->
<script data-goatcounter="https://resynth1943.goatcounter.com/count" {% if env == 'production' %}
async src="//gc.zgo.at/count.js"></script> <script data-goatcounter="https://resynth1943.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
{% else %}
<!-- WHERE MAH GOAT AT -->
{% endif %}
</body> </body>
</html> </html> <!-- ;¬) Stay synthin' -->
\ No newline at end of file \ No newline at end of file
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
"pug": "^3.0.0" "pug": "^3.0.0"
}, },
"scripts": { "scripts": {
"build": "eleventy", "build": "NODE_ENV=production eleventy",
"serve": "eleventy --serve", "serve": "eleventy --serve",
"watch": "eleventy --watch", "watch": "eleventy --watch",
"deploy": "now" "deploy": "now"
......
--- ---
layout: base layout: base
title: Responses
description: Here are some responses to common questions I'm asked.
--- ---
# Responses # Responses
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment