Added template and view that uses static assets
This commit is contained in:
19
static_project/static_app/templates/static_app/index.html
Normal file
19
static_project/static_app/templates/static_app/index.html
Normal 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>
|
||||
|
6
static_project/static_app/urls.py
Normal file
6
static_project/static_app/urls.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.urls import path
|
||||
from .views import index
|
||||
|
||||
urlpatterns = [
|
||||
path('', index, name='index'),
|
||||
]
|
@ -1,3 +1,5 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
def index(request):
|
||||
return render(request, 'static_app/index.html')
|
||||
|
Reference in New Issue
Block a user