added credits
This commit is contained in:
parent
209b144e51
commit
492ca4373c
7 changed files with 346 additions and 322 deletions
14
.eleventy.js
14
.eleventy.js
|
|
@ -1,11 +1,10 @@
|
|||
/**
|
||||
* I strive to keep the `.eleventy.js` file clean and uncluttered. Most adjustments must be made in:
|
||||
* - `src/config/collections.js`
|
||||
* - `src/config/filters.js`
|
||||
* - `src/config/plugins.js`
|
||||
* - `src/config/shortcodes.js`
|
||||
* - `src/config/transforms.js`
|
||||
* Based on https://github.com/AleksandrHovhannisyan.
|
||||
* - `./config/collections/index.js`
|
||||
* - `./config/filters/index.js`
|
||||
* - `./config/plugins/index.js`
|
||||
* - `./config/shortcodes/index.js`
|
||||
* - `./config/transforms/index.js`
|
||||
*/
|
||||
|
||||
// module import filters
|
||||
|
|
@ -36,8 +35,7 @@ const syntaxHighlight = require('@11ty/eleventy-plugin-syntaxhighlight');
|
|||
const {slugifyString} = require('./config/utils');
|
||||
const {escape} = require('lodash');
|
||||
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 => {
|
||||
// Tell 11ty to use the .eleventyignore and ignore our .gitignore file
|
||||
|
|
|
|||
642
package-lock.json
generated
642
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +1,5 @@
|
|||
/** © Andy Bell - https://buildexcellentwebsit.es/ */
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* Returns back some attributes based on wether the
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
<!-- https://web.dev/website-navigation/ -->
|
||||
|
||||
<nav id="mainnav" class="navbar">
|
||||
<ul>
|
||||
{% for item in navigation.top %}
|
||||
|
|
@ -20,7 +18,7 @@
|
|||
</ul>
|
||||
</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">
|
||||
<button type="button" aria-expanded="false" aria-label="Menu" aria-controls="mainnav">
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
/** © Andy Bell - https://buildexcellentwebsit.es/ */
|
||||
|
||||
const viewports = require('../design-tokens/viewports.json');
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
/** © Andy Bell - https://buildexcellentwebsit.es/ */
|
||||
|
||||
const slugify = require('slugify');
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
/* © Andy Bell - https://buildexcellentwebsit.es/ */
|
||||
|
||||
const plugin = require('tailwindcss/plugin');
|
||||
const postcss = require('postcss');
|
||||
const postcssJs = require('postcss-js');
|
||||
|
|
|
|||
Loading…
Reference in a new issue