This repository holds the sources for the decentpatterns.com website. It's built using the static site generator Eleventy, the tailwindcss framework and Javascript.
First, make sure that you have initialized and updated the library
submodule.
git submodule update --init
The site is developed for Node v12, you can use nvm use
to load the specific version from .nvmrc
or install it yourselves. Now you can pull the dependencies.
npm install
To start the development server, run the npm start
command in terminal and open localhost:3000
. The development server is configured to automatically reload when you make changes.
We use prettier and eslint to maintain a consistent and maintainable code style. Use the npm commands npm run lint
to validate sources and npm run prettier
to reformat sources on disk.
The site
folder contains all the templates, partials and content - which Eleventy will parse into HTML for us. Within our site
folder, lives a globals
folder. Here you'll find a site.json
file - for general config stuff e.g site name, author, email, social media links etc. You'll also find a navigation.json
file, which we use to loop over in our nav partial to generate our navigation. It's possible to hide navigation entries from the production deployment by setting "draft": true
on them. There's also a helpers.js
file, which just contains a simple environment helper.
The repository library contains markdown-formatted patterns that are included in the site. The repository contents are symlinked into the folders site/library
and site/topics
.
Some of the assets are bundled using Webpack. This includes client-side Javascript, which you can find in the scripts
folder and SCSS stylesheets, which are in the styles
folder.
Other assets are copied as-is for deployment. This includes fonts in styles/fonts
, images in images
and downloadable files in the public
folder.
The repository root contains configuration files for the various tools we use. In addition, you will find the more elaborate config for 11ty in the 11ty
folder.
Type the npm run build
command to minify scripts, styles and run Purgecss.
Purge will cross reference your templates/HTML with all those Tailwind classes and will remove any classes you haven't used - pretty cool huh?
© Decent Patterns contributors and Simply Secure. Licensed CC-BY.