# My portfolio This portfolio is here to be my index throught my online apps and also a place for public to check out my projects and stuff i do. ## Project structure ``` myproject/ ├── manage.py ├── myproject/ │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── static/ │ └── css/ │ └── main.css # Custom CSS (from ./assets/css/main.css) ├── templates/ │ ├── base.html # Base template with navbar │ ├── index.html # Home page │ ├── about.html # About page │ ├── projects.html # Projects page │ ├── apps.html # Apps page │ ├── articles.html # Articles page │ ├── contact.html # Contact page │ ├── report_issue.html # Report an issue page ├── blog/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py # App-specific URLs │ └── views.py # CBVs for all pages ```