This is the official website for AI4Forest, built using Jekyll. Please contact Jorunn or Sarah for more infos.
.
├── src/ # Source code
│ ├── _layouts/ # Jekyll layout templates
│ ├── _includes/ # Reusable HTML components
│ ├── _posts/ # Blog posts
│ ├── _data/ # Site data and configuration
│ ├── assets/ # Static assets (CSS, JS, images)
│ ├── content/ # Main content pages
│ ├── team.html # Team page
│ ├── publications.html # Publications page
│ ├── open-positions.html # Open positions page
│ ├── blogs/ # Blog-related pages
│ ├── services/ # Service-related pages
│ ├── portfolios/ # Portfolio pages
│ ├── shop/ # Shop-related pages
│ └── contact/ # Contact-related pages
├── templates/ # Example and template files
│ └── ui-components/ # UI component examples
├── _config.yml # Jekyll configuration
├── Gemfile # Ruby dependencies
└── package.json # Node.js dependencies
-
Install Ruby dependencies:
bundle install
-
Install Node.js dependencies:
npm install
-
Run the development server:
bundle exec jekyll serve -
Build the site:
bundle exec jekyll build
The site will be built to the _site directory (which is gitignored).
This site is automatically deployed to GitHub Pages when changes are pushed to the main branch.