Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
danimuncal_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
Izaac Daniel B. Muncal
danimuncal_reading
Commits
747fb85a
Commit
747fb85a
authored
Mar 28, 2023
by
Izaac Daniel B. Muncal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added templates including .html files
parent
9acf9f78
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
63 additions
and
1 deletion
+63
-1
author.html
danimuncal_reading/bookshelf/templates/author.html
+10
-0
author_detail.html
danimuncal_reading/bookshelf/templates/author_detail.html
+10
-0
books.html
danimuncal_reading/bookshelf/templates/books.html
+10
-0
books_detail.html
danimuncal_reading/bookshelf/templates/books_detail.html
+10
-0
home.html
danimuncal_reading/bookshelf/templates/home.html
+10
-0
settings.py
danimuncal_reading/danimuncal_reading/settings.py
+1
-1
base.html
danimuncal_reading/templates/base.html
+12
-0
No files found.
danimuncal_reading/bookshelf/templates/author.html
0 → 100644
View file @
747fb85a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
danimuncal_reading/bookshelf/templates/author_detail.html
0 → 100644
View file @
747fb85a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
danimuncal_reading/bookshelf/templates/books.html
0 → 100644
View file @
747fb85a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
danimuncal_reading/bookshelf/templates/books_detail.html
0 → 100644
View file @
747fb85a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
danimuncal_reading/bookshelf/templates/home.html
0 → 100644
View file @
747fb85a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
danimuncal_reading/danimuncal_reading/settings.py
View file @
747fb85a
...
...
@@ -58,7 +58,7 @@ ROOT_URLCONF = 'danimuncal_reading.urls'
TEMPLATES
=
[
{
'BACKEND'
:
'django.template.backends.django.DjangoTemplates'
,
'DIRS'
:
[],
'DIRS'
:
[
os
.
path
.
join
(
BASE_DIR
,
'templates'
)
],
'APP_DIRS'
:
True
,
'OPTIONS'
:
{
'context_processors'
:
[
...
...
danimuncal_reading/templates/base.html
0 → 100644
View file @
747fb85a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
{% block title %} title {% endblock %}
</title>
</head>
<h1>
{% block header %} header {% endblock %}
</h1>
<body>
{% block body %} body {% 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