mirror of
https://github.com/wagtail/wagtail.git
synced 2024-12-01 11:41:20 +01:00
d0a0c804c2
According to the ARIA spec: > A region that contains mostly site-oriented content, rather than page-specific content. > Site-oriented content typically includes things such as the logo or identity of the site sponsor, and a site-specific search tool. A banner usually appears at the top of the page and typically spans the full width. Where the `banner` role was applied was more page-specific than site-specific. In addition, tags with `banner` roles should not live under another landmark. To rectify, removed the misused banner roles. Remove inappropriate contentinfo landmarks According to ARIA spec 1.1 > A large perceivable region that contains information about the parent document. > Examples of information included in this region of the page are copyrights and links to privacy statements. They don't apply to the action buttons on where this was applied to. Add main landmark to 404 page |
||
---|---|---|
.. | ||
_static | ||
advanced_topics | ||
contributing | ||
editor_manual | ||
getting_started | ||
reference | ||
releases | ||
topics | ||
autobuild.sh | ||
conf.py | ||
favicon.ico | ||
index.rst | ||
logo.png | ||
Makefile | ||
README.md | ||
requirements.txt | ||
spelling_wordlist.txt | ||
support.rst |
Wagtail docs
These are Sphinx docs, automatically built at https://docs.wagtail.io when the master branch is committed to Github. To build them locally, install Wagtail's development requirements (in the root Wagtail directory):
pip install -e .[testing,docs]
To build the documentation for browsing, from this directory run:
make html
then open _build/html/index.html
in a browser.
To rebuild automatically while editing the documentation, from this directory run:
sphinx-autobuild . _build
The online editor at http://rst.ninjs.org/ is a helpful tool for checking reStructuredText syntax.