This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Sets the name of the 'key' for localStorage methods. | |
*/ | |
const storageKey = "theme-preference"; | |
/** | |
* Sets the preferred color theme when the toggle button is pressed. | |
*/ | |
const onClick = () => { | |
// flip current value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SHORTCODES | |
const Image = require("@11ty/eleventy-img"); | |
/** | |
* ELEVENTY IMAGE PLUGIN - Responsive image generator | |
* Outputs multiple sizes, formats, levels of optimization. | |
* @param src file path to the image | |
* @param alt alt text for the image | |
* @param sizes optional sizes list | |
* @param className optional class name | |
*/ |