Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jakhermosisima_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
Joaquin Hermosisima
jakhermosisima_reading
Commits
2c59b819
Commit
2c59b819
authored
Apr 13, 2023
by
Joaquin Hermosisima
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created templates and edited base and home.html
parent
607321ba
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
base.html
jakhermosisima_reading/templates/base.html
+18
-0
home.html
jakhermosisima_reading/templates/home.html
+19
-0
No files found.
jakhermosisima_reading/templates/base.html
0 → 100644
View file @
2c59b819
<html>
<head>
<title>
{%block title%}{%endblock%}
</title>
</head>
<h1>
{%block header%}{%endblock%}
</h1>
<body>
{%block content%}{%endblock%}
</body>
</html>
\ No newline at end of file
jakhermosisima_reading/templates/home.html
0 → 100644
View file @
2c59b819
{% extends "base.html" %}
<html>
{%block title%}My Favorite Books
&
Authors{%endblock%}
{%block header%} Welcome to {{nickname}}'s Database of Favorite Books
&
Authors! {%endblock%}
{%block content%}
<p>
The collection of books you will find here mostly belong to the military espionage/thriller genre
</p><div>
<p>
while others come from Middle-earth fiction and romance.
</p></div>
{% for url in urls %}
<a
href=
"../{{url}}"
>
{{url}}
</a>
{% endfor %}
{%endblock%}
</html>
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