1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-27 08:24:22 +00:00
Ismael Carnales 89bd6ede43 first commit of doc apps
--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40425
2008-11-25 18:16:04 +00:00

43 lines
852 B
HTML

{% extends "base.html" %}
{% block extrastyles %}
<style type="text/css">
a.headerlink {
color: #c60f0f;
font-size: 0.8em;
padding: 0 4px 0 4px;
text-decoration: none;
visibility: hidden;
}
h1:hover > a.headerlink,
h2:hover > a.headerlink,
h3:hover > a.headerlink,
h4:hover > a.headerlink,
h5:hover > a.headerlink,
h6:hover > a.headerlink,
dt:hover > a.headerlink {
visibility: visible;
}
a.headerlink:hover {
background-color: #c60f0f;
color: white;
}
</style>
<link href="{{ MEDIA_URL }}/style/pygments.css" rel="stylesheet" type="text/css" media="screen" />
{% endblock %}
{% block content %}
{% include "header.html" %}
<div id="content">
<div id="left-column">
{% block main-content %}{% endblock %}
</div>
<div id="right-column">
{% block extra-content %}{% endblock %}
</div>
</div>
{% endblock %}