1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-25 18:43:58 +00:00

removed documentation header notifying about other documentation versions, as that's provided by readthedocs already

This commit is contained in:
Pablo Hoffman 2011-09-14 02:41:01 -03:00
parent 3b00b9cb12
commit 2fcb7097bd
2 changed files with 0 additions and 39 deletions

View File

@ -638,19 +638,6 @@ img.logo {
border: 0;
}
.docversion {
padding-top: 5px;
padding-bottom: 5px;
}
.devdoc {
color: red;
}
.stabledoc {
color: #777;
}
/* :::: PRINT :::: */
@media print {
div.document,

View File

@ -1,26 +0,0 @@
{% extends "layout.html" %}
{% block body %}
<div class="deck">
<div class="docversion">
{% if version == "0.13" %}
<p class="devdoc">
This document is for Scrapy's development version, which can be
significantly different from previous releases. Get old docs here:
<a href="http://doc.scrapy.org/0.12/{{ pagename }}{{ file_suffix }}">0.12</a>,
<a href="http://doc.scrapy.org/0.10/{{ pagename }}{{ file_suffix }}">0.10</a>,
<a href="http://doc.scrapy.org/0.9/{{ pagename }}{{ file_suffix }}">0.9</a>.
<a href="http://doc.scrapy.org/0.8/{{ pagename }}{{ file_suffix }}">0.8</a>.
<a href="http://doc.scrapy.org/0.7/{{ pagename }}{{ file_suffix }}">0.7</a>.
</p>
{% else %}
<p class="stabledoc">
This document describes Scrapy {{ version }}. For development docs,
<a href="http://doc.scrapy.org/dev/{{ pagename }}{{ file_suffix }}">go here</a>.
</p>
{% endif %}
</div>
</div>
{{ body }}
{% endblock %}