Women's Internet Freedom Static Site
The website is built using Nikola static site generator. Jinja template style is used.
Create a Python virtual environment if you haven't already.
- Create a new environment:
python3 -m venv venv
- Activate it:
source venv/bin/activate
- Install requirements:
pip install -r requirements.txt
- Go to the Nikola website directory:
cd wifa
- Build the static output:
nikola build
- Serve the website using development server:
nikola serve
- Go to your browser and navigate to the address the terminal has shown.
For the purpose of this website, it is the easiest to add your page's HTMLs to wifa/pages
directory.
It's a good idea to have <title>
and <meta name="description" content="..." />
tags filled in.