polyblog/templates/base.html

32 lines
812 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static "general.css" %}" />
{% block head %}{% endblock %}
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"/>
<title>polylux</title>
</head>
<body alink="#000099" link="#000099" vlink="#990099">
<div>
<a href="/"><img src=" {% static "poly.svg" %} " width="200"/></a>
</div>
<div id="nav">
<ul>
<li><a href="{% url 'listall' %}">Blog</a></li>
<li><a href="{% url 'about' %}">About</a></li>
<li><a href="{% url 'contact' %}">Contact</a></li>
</ul>
</div>
<div id="main">
{% block content %}
{% endblock %}
</div>
</body></html>