| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
A modern, professional SaaS website for codeGROOVE built with Eleventy (11ty).
npm installnpm startThis will start a local development server with hot reload at http://localhost:8080.
npm run buildThis will generate the static site in the _site directory.
npm run cleanThis removes the _site directory.
src/ ├── _includes/ # Reusable includes ├── _layouts/ # Page layouts │ ├── base.njk # Base layout with navigation │ └── post.njk # Blog post layout ├── _data/ # Site data ├── blog/ # Blog posts (Markdown) ├── css/ # Stylesheets │ └── main.css # Main stylesheet ├── js/ # JavaScript │ └── main.js # Main JavaScript file ├── media/ # Images and fonts ├── .well-known/ # Well-known files │ └── security.txt # Security contact information └── *.njk # Page templates
The site can be deployed to any static hosting service:
Edit the CSS variables in src/css/main.css:
:root {
--color-primary: #ffff00; /* codeGROOVE yellow */
--color-secondary: #000000; /* Black */
/* ... */
}The site uses the Ojuju font family for headings and system fonts for body text.
All content is in the src/ directory. Pages use Nunjucks templating with Markdown support for blog posts.
Copyright 2024 codeGROOVE. All rights reserved.
| Back | FazBrowse Home | New Git URL |