"Django Landing page and Blog application" is a developer blog and portfolio website built using Django, CSS and Bootstrap . The project demonstrates a clean, modern design that is responsive. It includes an admin interface for managing the content and is easy to customize and deploy to a production environment. Credits to the great blog tutorial of the Django Girls.

- Install venv:
python3 -m venv venv
- Run venv:
source venv/bin/activate
- Install Django:
python3 -m pip install --upgrade pip
- Create a requirements file and add:
Django
- Install requirements:
pip install -r requirements.txt
- Run app:
python manage.py runserver