This is the 11ty codebase for https://design-system.lib.umich.edu.
- Install packages
npm install
- Start the development server
npm start
or if you need a different port:
npx eleventy --port 6789 --serve
- View in browser
http://localhost:8080
or if you changed the port in step 2
http://localhost:6789
npm start
to start the eleventy server (serves the/public
folder) and watch the/scss
folder..scss
files compile and output to/public/css
.npm build
to create a production build. Outputs into/public
.
eleventy-sass
is used as a dev dependency to watch and compile the .scss
files and output to the /public/css
directory.
Eleventy Dev Server watches the /js
and /scss
folders and triggers a build when files in those folders are changed.
Design System contributors should read the internal documentation for Development for the Doc site. Please read the official 11ty documentation for an in-depth guide to building with 11ty.
Layouts use the Nunjucks templating language.
Page layouts are located the the layouts
folder.
Partials use the Nunjucks {% include %}
and are located in the partials
folder.
src/_includes/partials
Design System contributors should read the internal documentation for Authoring in 11ty.
Static page content is created with markdown (.md).
Use YAML front matter to add data to your content. Locally assigned front matter values override things further up the chain.
Edit the styles in the src/scss
folder. 11ty is watching that folder. 11ty then passes through the compiled CSS to the public
folder.
Add images to the src/img
folder. 11ty is watching that folder and passing
through the files to the public
folder.
This site uses the 11ty Navigation Plugin. This plugin supports infinite-depth hierarchical navigation and breadcrumbs.
Add the eleventyNavigation
object to your front matter data (or in a data
directory file). Assign a unique string to the key property inside of
eleventyNavigation
.
eleventyNavigation:
key: about
Collections allow you to group data in certain ways using tags
. We use collections and custom collections.
Important distinction: tags have a singular purpose in Eleventy... to construct collections of content. Not to be confused with tag labels used in blogs.