mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-24 23:43:59 +00:00
27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
{% 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 %}
|