mirror of
https://github.com/Superredstone/patrickcanal.it.git
synced 2026-09-20 17:51:12 +02:00
feat: first rewrite commit
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
|
||||
# Register your models here.
|
||||
@@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class PortfolioConfig(AppConfig):
|
||||
name = 'portfolio'
|
||||
@@ -0,0 +1,2 @@
|
||||
|
||||
# Create your models here.
|
||||
@@ -0,0 +1,2 @@
|
||||
{% include "base.html" %}
|
||||
{% block content %}Hello{% endblock %}
|
||||
@@ -0,0 +1,2 @@
|
||||
|
||||
# Create your tests here.
|
||||
@@ -0,0 +1,7 @@
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
|
||||
# Create your views here.
|
||||
class IndexView(TemplateView):
|
||||
template_name = "index.html"
|
||||
|
||||
Reference in New Issue
Block a user