Added template and view that uses static assets

This commit is contained in:
2025-05-29 15:43:13 -04:00
parent 729c70d879
commit c80573e567
6 changed files with 38 additions and 2 deletions

View File

@ -0,0 +1,19 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Django is Awesome</title>
<link rel="stylesheet" href="{% static 'styles/styles.css' %}">
</head>
<body>
<img src="{% static 'images/dlogo.png' %}" alt="Django Logo">
<h1>Welcome to Django!</h1>
<p>Django makes it easier to build better web apps faster and with less code.</p>
<script src="{% static 'js/script.js' %}"></script>
</body>
</html>

View File

@ -0,0 +1,6 @@
from django.urls import path
from .views import index
urlpatterns = [
path('', index, name='index'),
]

View File

@ -1,3 +1,5 @@
from django.shortcuts import render
# Create your views here.
def index(request):
return render(request, 'static_app/index.html')