Commit 2c59b819 authored by Joaquin Hermosisima's avatar Joaquin Hermosisima

created templates and edited base and home.html

parent 607321ba
<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
{% 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>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment