feat: first rewrite commit

This commit is contained in:
2026-08-17 23:15:46 +02:00
parent bf5f135f32
commit 9be8392cd4
5886 changed files with 475340 additions and 170 deletions
View File
Binary file not shown.
Binary file not shown.
+2
View File
@@ -0,0 +1,2 @@
# Register your models here.
+5
View File
@@ -0,0 +1,5 @@
from django.apps import AppConfig
class PortfolioConfig(AppConfig):
name = 'portfolio'
View File
+2
View File
@@ -0,0 +1,2 @@
# Create your models here.
+2
View File
@@ -0,0 +1,2 @@
{% include "base.html" %}
{% block content %}Hello{% endblock %}
+2
View File
@@ -0,0 +1,2 @@
# Create your tests here.
+7
View File
@@ -0,0 +1,7 @@
from django.views.generic import TemplateView
# Create your views here.
class IndexView(TemplateView):
template_name = "index.html"