ku-polls/polls/templates/polls/base.html
sosokker 477903dfd3 Update Views of all pages - index, detail, result / Add Home Page
Update views of all pages and add HomeView (Homepage) + Update data of sqlite3 polls database
2023-08-28 22:32:42 +07:00

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>