https://github.com/pixelscommander/relocationsummit
https://github.com/pixelscommander/relocationsummit
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pixelscommander/relocationsummit
- Owner: PixelsCommander
- Created: 2025-08-28T06:57:55.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2026-02-10T04:38:08.000Z (4 months ago)
- Last Synced: 2026-02-10T09:47:51.999Z (4 months ago)
- Language: HTML
- Size: 33.9 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project: IES26
## Project Structure
```
fr/
├── src/
│ ├── components/ # Nunjucks components (hero, integrations, featured-work, etc.)
│ ├── layouts/ # Layout (layout.njk)
│ ├── pages/ # Pages (index.njk)
│ ├── styles/ # SASS/SCSS files
│ └── scripts/ # JS files (all modules imported in main.js)
├── public/ # Compiled code (HTML, CSS, JS)
```
## Install
- `npm install` - install all dependencies
## Build and Run
- `npm run dev` or `npm start` — start dev server with hot reload (http://localhost:3000), no minification for CSS and JS
- `npm run build` — production build to public folder (minified)
- `npm run clean` - clean public folder
## How Components Work
- Each major block is a separate file in `src/components/` (e.g., `header.njk`, `hero.njk`, etc.)
- Main page (`src/pages/index.njk`) assembles them via `{% include %}`.
- To change the order of blocks, simply change the include order in `index.njk`.