added credits

This commit is contained in:
madrilene 2022-11-30 15:12:51 +01:00
parent 209b144e51
commit 492ca4373c
7 changed files with 346 additions and 322 deletions

View file

@ -1,11 +1,10 @@
/** /**
* I strive to keep the `.eleventy.js` file clean and uncluttered. Most adjustments must be made in: * I strive to keep the `.eleventy.js` file clean and uncluttered. Most adjustments must be made in:
* - `src/config/collections.js` * - `./config/collections/index.js`
* - `src/config/filters.js` * - `./config/filters/index.js`
* - `src/config/plugins.js` * - `./config/plugins/index.js`
* - `src/config/shortcodes.js` * - `./config/shortcodes/index.js`
* - `src/config/transforms.js` * - `./config/transforms/index.js`
* Based on https://github.com/AleksandrHovhannisyan.
*/ */
// module import filters // module import filters
@ -36,8 +35,7 @@ const syntaxHighlight = require('@11ty/eleventy-plugin-syntaxhighlight');
const {slugifyString} = require('./config/utils'); const {slugifyString} = require('./config/utils');
const {escape} = require('lodash'); const {escape} = require('lodash');
const pluginRss = require('@11ty/eleventy-plugin-rss'); const pluginRss = require('@11ty/eleventy-plugin-rss');
const inclusiveLangPlugin = require("@11ty/eleventy-plugin-inclusive-language"); const inclusiveLangPlugin = require('@11ty/eleventy-plugin-inclusive-language');
module.exports = eleventyConfig => { module.exports = eleventyConfig => {
// Tell 11ty to use the .eleventyignore and ignore our .gitignore file // Tell 11ty to use the .eleventyignore and ignore our .gitignore file

642
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,5 @@
/** © Andy Bell - https://buildexcellentwebsit.es/ */
module.exports = { module.exports = {
/** /**
* Returns back some attributes based on wether the * Returns back some attributes based on wether the

View file

@ -1,5 +1,3 @@
<!-- https://web.dev/website-navigation/ -->
<nav id="mainnav" class="navbar"> <nav id="mainnav" class="navbar">
<ul> <ul>
{% for item in navigation.top %} {% for item in navigation.top %}
@ -20,7 +18,7 @@
</ul> </ul>
</nav> </nav>
<!-- template element holding a button that needs to be injected when JavaScript is finally available. Source: https://web.dev/website-navigation/ --> <!-- template element holding a button that needs to be injected when JavaScript is finally available. based on an article by Manuel Matuzovic, https://web.dev/website-navigation/, see also https://kittygiraudel.com/2022/09/30/templating-in-html/ -->
<template id="burger-template"> <template id="burger-template">
<button type="button" aria-expanded="false" aria-label="Menu" aria-controls="mainnav"> <button type="button" aria-expanded="false" aria-label="Menu" aria-controls="mainnav">

View file

@ -1,3 +1,5 @@
/** © Andy Bell - https://buildexcellentwebsit.es/ */
const viewports = require('../design-tokens/viewports.json'); const viewports = require('../design-tokens/viewports.json');
/** /**

View file

@ -1,3 +1,5 @@
/** © Andy Bell - https://buildexcellentwebsit.es/ */
const slugify = require('slugify'); const slugify = require('slugify');
/** /**

View file

@ -1,3 +1,5 @@
/* © Andy Bell - https://buildexcellentwebsit.es/ */
const plugin = require('tailwindcss/plugin'); const plugin = require('tailwindcss/plugin');
const postcss = require('postcss'); const postcss = require('postcss');
const postcssJs = require('postcss-js'); const postcssJs = require('postcss-js');