Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
garethcastillo_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
Gareth Xerxes Yap Castillo
garethcastillo_reading
Commits
dc38eaf9
Commit
dc38eaf9
authored
Mar 28, 2023
by
Gareth Xerxes Yap Castillo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add base.html and add other html files
parent
0673b47e
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
1 deletion
+22
-1
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+0
-0
authors.html
...stillo_reading/bookshelf/templates/bookshelf/authors.html
+0
-0
book_details.html
...o_reading/bookshelf/templates/bookshelf/book_details.html
+0
-0
books.html
...castillo_reading/bookshelf/templates/bookshelf/books.html
+0
-0
home.html
...hcastillo_reading/bookshelf/templates/bookshelf/home.html
+8
-0
settings.py
garethcastillo_reading/garethcastillo_reading/settings.py
+1
-1
base.html
garethcastillo_reading/templates/base.html
+13
-0
No files found.
garethcastillo_reading/bookshelf/templates/bookshelf/author_details.html
0 → 100644
View file @
dc38eaf9
garethcastillo_reading/bookshelf/templates/bookshelf/authors.html
0 → 100644
View file @
dc38eaf9
garethcastillo_reading/bookshelf/templates/bookshelf/book_details.html
0 → 100644
View file @
dc38eaf9
garethcastillo_reading/bookshelf/templates/bookshelf/books.html
0 → 100644
View file @
dc38eaf9
garethcastillo_reading/bookshelf/templates/bookshelf/home.html
0 → 100644
View file @
dc38eaf9
{% extends 'base.html' %}
{% load static %}
{% block title %}My Favorite Books and Authors{% endblock %}
{% block content %}
<h1>
Hello World. This is the content
</h1>
{% endblock %}
\ No newline at end of file
garethcastillo_reading/garethcastillo_reading/settings.py
View file @
dc38eaf9
...
...
@@ -60,7 +60,7 @@ ROOT_URLCONF = 'garethcastillo_reading.urls'
TEMPLATES
=
[
{
'BACKEND'
:
'django.template.backends.django.DjangoTemplates'
,
'DIRS'
:
[],
'DIRS'
:
[
os
.
path
.
join
(
BASE_DIR
,
'templates'
)
],
'APP_DIRS'
:
True
,
'OPTIONS'
:
{
'context_processors'
:
[
...
...
garethcastillo_reading/templates/base.html
0 → 100644
View file @
dc38eaf9
<html
lang=
"en"
>
<head>
<link
rel=
"stylesheet"
href=
"style.css"
>
<title>
{% block title %}My amazing site{% endblock %}
</title>
{% block styles %}{% endblock %}
</head>
<body>
<div
id=
"content"
>
{% block content %}{% endblock %}
</div>
{% block scripts %}{% endblock %}
</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