Add home page and urls!
This commit is contained in:
@@ -1,2 +1,8 @@
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
<html>
|
||||
<head>
|
||||
<title>Forget me not</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block content %} {% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
12
forgetmenot/templates/home/index.html
Normal file
12
forgetmenot/templates/home/index.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user