Diverse fiksing på utseendet på filer (#12). Og vær så snill: ikke sett 'Worblehat 0.1:' i title-blokka i html-filene, det skal i main. Hvis ikke blir det et lite helvete når vi rykker opp til 0.2.

This commit is contained in:
2011-03-06 19:42:07 +00:00
parent 3d16a43961
commit 1e9585c23c
6 changed files with 48 additions and 31 deletions

View File

@@ -1,24 +1,25 @@
<!DOCTYPE html>
<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">
<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>
<hr/>
{% block content %}
{% endblock %}
<br/><br/>
<hr/>
<div class="field">
<form action="/let/" method="get">
<input type="search" name="searchterm" placeholder="Søk etter bøker eller forfattere" autofocus>
<input type="submit" value="Søk!">
</form>
</div>
</body>
{% block meta %}
{% endblock %}
</head>
<body>
<h1>Worblehat</h1>
<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>