mirror of
https://github.com/Sosokker/ku-polls.git
synced 2026-01-02 03:34:09 +01:00
Update views of all pages and add HomeView (Homepage) + Update data of sqlite3 polls database
26 lines
771 B
HTML
26 lines
771 B
HTML
{% load static %}
|
|
<html>
|
|
<head>
|
|
<title>MySite Polls</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400" rel="stylesheet">
|
|
<link rel='stylesheet' href='{% static 'polls/base.css' %}'>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<header>
|
|
<div class='nav-left'>
|
|
<h1><a href={% url 'home' %}>MySite Polls | </a></h1>
|
|
</div>
|
|
<div class='nav-right'>
|
|
<ul>
|
|
<li><a href="{% url 'home' %}">Home</a></li>
|
|
<li><a href="{% url 'polls:index' %}">View Polls</a></li>
|
|
</ul>
|
|
</div>
|
|
</header>
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</body>
|
|
</html>
|