Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
janang_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
Jan Ericsson Ong Ang
janang_reading
Commits
fc85e93e
Commit
fc85e93e
authored
Mar 28, 2023
by
Jan Ericsson Ong Ang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created 5 types of html files
parent
6815828d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
1 deletion
+16
-1
views.cpython-310.pyc
janang_reading/bookshelf/__pycache__/views.cpython-310.pyc
+0
-0
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+0
-0
authors.html
janang_reading/bookshelf/templates/bookshelf/authors.html
+0
-0
book_details.html
...g_reading/bookshelf/templates/bookshelf/book_details.html
+0
-0
homepage.html
janang_reading/bookshelf/templates/bookshelf/homepage.html
+0
-0
settings.cpython-310.pyc
...ading/janang_reading/__pycache__/settings.cpython-310.pyc
+0
-0
settings.py
janang_reading/janang_reading/settings.py
+2
-1
base.html
janang_reading/templates/base.html
+14
-0
No files found.
janang_reading/bookshelf/__pycache__/views.cpython-310.pyc
View file @
fc85e93e
No preview for this file type
janang_reading/bookshelf/templates/bookshelf/author_details.html
0 → 100644
View file @
fc85e93e
janang_reading/bookshelf/templates/bookshelf/authors.html
0 → 100644
View file @
fc85e93e
janang_reading/bookshelf/templates/bookshelf/book_details.html
0 → 100644
View file @
fc85e93e
janang_reading/bookshelf/templates/bookshelf/homepage.html
0 → 100644
View file @
fc85e93e
janang_reading/janang_reading/__pycache__/settings.cpython-310.pyc
View file @
fc85e93e
No preview for this file type
janang_reading/janang_reading/settings.py
View file @
fc85e93e
...
...
@@ -116,7 +116,8 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/4.1/howto/static-files/
STATIC_URL
=
'static/'
STATIC_URL
=
'/static/'
STATICFILES_DIRS
=
[
os
.
path
.
join
(
BASE_DIR
,
'static'
)]
# Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
...
...
janang_reading/templates/base.html
0 → 100644
View file @
fc85e93e
<!DOCTYPE html>
<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=
"contetnt"
>
{% 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