add stub login page
This commit is contained in:
22
templates/base.html
Normal file
22
templates/base.html
Normal file
@ -0,0 +1,22 @@
|
||||
{% load staticfiles %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>TITLE</title>
|
||||
<link rel="stylesheet" href="{% static 'main.css' %}">
|
||||
</head>
|
||||
<body>
|
||||
{% block navigation %}
|
||||
<div class="container navigation">
|
||||
NAV
|
||||
</div>
|
||||
{% endblock%}
|
||||
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
|
||||
<script src="{% static 'app.js' %}"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user