Source code of the Opnxng website
assests | ||
back up | ||
src | ||
.eleventy.js | ||
.gitignore | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md |
Opnxng website
The source code of about.opnxng.com, powered by Eleventy.
Credits
EB Garamond, a FOSS typeface designed by Georg Mayr-Duffner, is used for the drop caps. It is available on Github.
Heldane Text, another Garalde designed by Kris Sowersby, is used for the body text.
The site used the reset styles by Eric A. Meyer and the SVG Favicons generator by Shuntaro Nishizawa.
Usage
# Initialize
docker run --rm --name=npm -u 1000 -v /path/to/website:/app -w /app node:lts-slim npm init -y
# Install node modules
docker run --rm --name=npm -u 1000 -v /path/to/website:/app -w /app node:lts-slim npm install \
npm \
@11ty/eleventy \
luxon \
html-minifier-terser \
clean-css \
markdown-it-attrs \
markdown-it-bracketed-spans \
markdown-it-anchor
# Generate website
docker run --rm --name=npm -u 1000 -v /path/to/website:/app -w /app --network none node:lts-slim npx eleventy
# Update
docker run --rm --name=npm -u 1000 -v /path/to/website:/app -w /app node:lts-slim npm update