1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-27 10:23:40 +00:00
Ismael Carnales cf8b5fae37 massive rework of templates and styles
--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40534
2008-12-18 16:22:09 +00:00

36 lines
1.2 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{% block title %}Scrapy.org. Scraping framework{% endblock %}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="{{ MEDIA_URL }}/style/style.css" rel="stylesheet" type="text/css" media="screen" />
{% block extrastyles %}{% endblock %}
<!--[if IE 6]>
<link href="/style/ie60.css" rel="stylesheet" type="text/css" media="screen" />
<![endif]-->
<!--[if IE 7]>
<link href="/style/ie70.css" rel="stylesheet" type="text/css" media="screen" />
<![endif]-->
{% block extrascripts %}{% endblock %}
</head>
<body>
<div id="wrapper">
{% include "header.html" %}
<div id="body">
<div id="content-wrapper">
<div id="content">
{% block main-content %}{% endblock %}
</div>
</div>
<div id="sidebar">
{% block extra-content %}{% endblock %}
</div>
<br class="clear"/>
</div>
{% include "footer.html" %}
</div>
</body>
</html>