feat(portfolio): improve landing page

This commit is contained in:
2026-08-28 20:42:48 +02:00
parent 452ae78564
commit bd6a22e814
24 changed files with 430 additions and 12 deletions
+4 -1
View File
@@ -1,7 +1,10 @@
from django.views.generic import TemplateView
from portfolio import models
# Create your views here.
class IndexView(TemplateView):
template_name = "index.html"
def get_context_data(self, **kwargs):
return {"job_experiences": models.JobExperience.objects.all().order_by("-start")}