Add home page and urls!

This commit is contained in:
2021-03-17 22:00:44 -05:00
parent d19eb748d2
commit 46dd3bf9b3
5 changed files with 30 additions and 2 deletions

View File

@@ -1,2 +1,8 @@
{% block content %}
{% endblock %}
<html>
<head>
<title>Forget me not</title>
</head>
<body>
{% block content %} {% endblock %}
</body>
</html>

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block content %}
<p>This is the home page.</p>
<p>
Links<br/>
<ul>
<li><a href="{% url 'bookmarks:bookmark-list' %}">Bookmarks</a></li>
<li><a href="{% url 'login' %}">Login</a></li>
</ul>
</p>
{% endblock %}