This project contains the landing pages for NEXTGRES.
- 11ty (Eleventy) static site generator
- Bootstrap for styling
-
Create a new
.njk
(Nunjucks) template in thesrc/
directory (e.g.,src/new-page.njk
). -
Add your content and specify the layout at the top of the file:
--- title: My New Page layout: base.njk --- {% block content %} <!-- Your content here --> {% endblock %}
-
The page will be built to the
_site/
directory after running the build process.
- All changes pushed to the
main
branch are automatically deployed via GitHub → Netlify integration. - No manual deployment steps are required.
For more details, see the 11ty documentation and Bootstrap documentation.