Projects/worblehat-old
Projects
/
worblehat-old
Archived
12
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
worblehat-old/python/web/templates/base/main.html

33 lines
961 B
HTML
Raw Normal View History

<!DOCTYPE html>
2011-03-05 21:30:03 +01:00
<html>
<head>
<title>Worblehat 0.1: {% block title %}{% endblock %}</title>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="/media/styles/scaffold.css">
{% block meta %}
{% endblock %}
</head>
<body>
<h1>Worblehat</h1>
<div class="links">
<a href="/" class="link">Hjem</a> |
<a href="/kart/" class="link">Hyllekart</a> |
<a href="/kategori/" class="link">Kategorier</a> |
<a href="/bok/" class="link">Bøker</a> |
<a href="/person/" class="link">Forfattere og andre personer</a> <br/>
</div>
<hr/>
{% block content %}
{% endblock %}
<br/><br/>
<hr/>
<div class="field">
<form action="/let/" method="get">
<input type="search" name="searchterm" class="input" placeholder="Søk etter bøker, forfattere eller kategorier" autofocus>
<input type="submit" value="Søk!">
</form>
</div>
</body>
</html>