Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
calvincruz_reading
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Calvin Josh Cruz
calvincruz_reading
Commits
e63b8a7b
Commit
e63b8a7b
authored
Mar 29, 2023
by
karin-kurusu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created template "base.html"
parent
2f1e2570
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
1 deletion
+17
-1
urls.cpython-310.pyc
...incruz_reading/bookshelf/__pycache__/urls.cpython-310.pyc
+0
-0
views.cpython-310.pyc
...ncruz_reading/bookshelf/__pycache__/views.cpython-310.pyc
+0
-0
settings.cpython-310.pyc
...g/calvincruz_reading/__pycache__/settings.cpython-310.pyc
+0
-0
urls.cpython-310.pyc
...ading/calvincruz_reading/__pycache__/urls.cpython-310.pyc
+0
-0
settings.py
calvincruz_reading/calvincruz_reading/settings.py
+1
-1
base.html
calvincruz_reading/templates/base.html
+16
-0
No files found.
calvincruz_reading/bookshelf/__pycache__/urls.cpython-310.pyc
0 → 100644
View file @
e63b8a7b
File added
calvincruz_reading/bookshelf/__pycache__/views.cpython-310.pyc
0 → 100644
View file @
e63b8a7b
File added
calvincruz_reading/calvincruz_reading/__pycache__/settings.cpython-310.pyc
View file @
e63b8a7b
No preview for this file type
calvincruz_reading/calvincruz_reading/__pycache__/urls.cpython-310.pyc
View file @
e63b8a7b
No preview for this file type
calvincruz_reading/calvincruz_reading/settings.py
View file @
e63b8a7b
...
...
@@ -59,7 +59,7 @@ ROOT_URLCONF = 'calvincruz_reading.urls'
TEMPLATES
=
[
{
'BACKEND'
:
'django.template.backends.django.DjangoTemplates'
,
'DIRS'
:
[],
'DIRS'
:
[
os
.
path
.
join
(
BASE_DIR
,
'templates'
)
],
'APP_DIRS'
:
True
,
'OPTIONS'
:
{
'context_processors'
:
[
...
...
calvincruz_reading/templates/base.html
0 → 100644
View file @
e63b8a7b
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<link
rel=
"stylesheet"
href=
"style.css"
>
<title>
{% block title %}My Favorite Books
&
Authors{% endblock %}
</title>
{% block styles %}{% endblock %}
</head>
<body>
<div
id=
"content"
>
{% block content %}{% endblock %}
</div>
<navbar>
{% block navbar %}{% endblock %}
</navbar>
</body>
<html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment