Skip to content

Commit 546d3c1

Browse files
committed
Update readme
1 parent 44380d7 commit 546d3c1

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

README.md

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -157,43 +157,43 @@ ZeroPoint includes additional features that are disabled by default. Enable them
157157

158158
```text
159159
example.com # → Root of your ZeroPoint project
160-
── content/ # → Site content
161-
├── pages/ # → Site pages (Markdown/HTML)
162-
│ ├── posts/ # → Blog posts (disabled by default)
163-
│ ├── 404.njk # → 404 error page
164-
│ ├── blog.njk # → Blog listing page
165-
│ ├── manifest.njk # → Web app manifest
166-
│ ├── redirects.njk # → Netlify redirects
167-
│ ├── robots.njk # → Robots.txt
168-
── xml_sitemap.njk # → XML sitemap
169-
├── src/ # → Source directory
170-
├── assets/ # → Site assets
171-
│ ├── fonts/ # → Web fonts
172-
│ ├── images/ # → Images and graphics
173-
│ ├── scripts/ # → JavaScript files
174-
│ │ └── main.js # → Main JavaScript bundle
175-
│ ├── styles/ # → Stylesheets (SCSS)
176-
│ │ └── styles.scss # → Main stylesheet
177-
│ └── views/ # → Templates and layouts
178-
│ ├── layouts/ # → Page layouts
179-
│ │ └── base.njk # → Base HTML template
180-
│ └── partials/ # → Reusable template parts
181-
├── config/ # → Eleventy configuration (ES modules)
182-
│ ├── build.js # → esbuild configuration for assets
183-
│ ├── collections.js # → Content collections
184-
│ ├── filters.js # → Template filters
185-
│ ├── passthroughs.js # → File passthroughs
186-
│ ├── plugins.js # → Eleventy plugins
187-
│ ├── shortcodes.js # → Template shortcodes
188-
│ ├── templateLanguages.js # → Custom template languages
189-
│ ├── transforms.js # → Content transforms
190-
│ ├── watchtargets.js # → File watch targets
191-
│ └── config.json # → Config file settings
192-
│ └── data/ # → Global data files
193-
├── env.js # → Environment variables
194-
└── navigation.json # → Site navigation structure
195-
├── public/ # → Built site (generated)
196-
├── .eleventy.js # → Core Eleventy config file
197-
├── README.ZeroPoint.md # → Template documentation
198-
└── README.md # → Project readme
160+
── src/ # → Source directory (all project content and code)
161+
├── content/ # → Site content
162+
│ ├── pages/ # → Site pages (Markdown/HTML)
163+
│ ├── posts/ # → Blog posts (disabled by default)
164+
│ ├── 404.njk # → 404 error page
165+
│ ├── blog.njk # → Blog listing page
166+
│ ├── manifest.njk # → Web app manifest
167+
│ ├── redirects.njk # → Netlify redirects
168+
── robots.njk # → Robots.txt
169+
└── xml_sitemap.njk # → XML sitemap
170+
├── assets/ # → Site assets
171+
│ ├── fonts/ # → Web fonts
172+
│ ├── images/ # → Images and graphics
173+
│ ├── scripts/ # → JavaScript files
174+
│ │ └── main.js # → Main JavaScript bundle
175+
│ ├── styles/ # → Stylesheets (SCSS)
176+
│ │ └── styles.scss # → Main stylesheet
177+
│ └── views/ # → Templates and layouts
178+
│ ├── layouts/ # → Page layouts
179+
│ │ └── base.njk # → Base HTML template
180+
│ └── partials/ # → Reusable template parts
181+
├── config/ # → Eleventy configuration (ES modules)
182+
│ ├── build.js # → esbuild configuration for assets
183+
│ ├── collections.js # → Content collections
184+
│ ├── filters.js # → Template filters
185+
│ ├── passthroughs.js # → File passthroughs
186+
│ ├── plugins.js # → Eleventy plugins
187+
│ ├── shortcodes.js # → Template shortcodes
188+
│ ├── templateLanguages.js # → Custom template languages
189+
│ ├── transforms.js # → Content transforms
190+
│ ├── watchtargets.js # → File watch targets
191+
│ └── config.json # → Config file settings
192+
── data/ # → Global data files
193+
├── env.js # → Environment variables
194+
└── navigation.json # → Site navigation structure
195+
├── public/ # → Built site (generated)
196+
├── .eleventy.js # → Core Eleventy config file
197+
├── README.ZeroPoint.md # → Template documentation
198+
└── README.md # → Project readme
199199
```

0 commit comments

Comments
 (0)