• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

babel/H03-May-2022-544448

LICENSEH A D03-May-20221.7 KiB3830

READMEH A D03-May-20221.1 KiB3224

README

1Flask Sphinx Styles
2===================
3
4This repository contains sphinx styles for Flask and Flask related
5projects.  To use this style in your Sphinx documentation, follow
6this guide:
7
81. put this folder as _themes into your docs folder.  Alternatively
9   you can also use git submodules to check out the contents there.
102. add this to your conf.py:
11
12   sys.path.append(os.path.abspath('_themes'))
13   html_theme_path = ['_themes']
14   html_theme = 'flask'
15
16The following themes exist:
17
18- 'flask' - the standard flask documentation theme for large
19  projects
20- 'flask_small' - small one-page theme.  Intended to be used by
21  very small addon libraries for flask.
22
23The following options exist for the flask_small theme:
24
25   [options]
26   index_logo = ''              filename of a picture in _static
27                                to be used as replacement for the
28                                h1 in the index.rst file.
29   index_logo_height = 120px    height of the index logo
30   github_fork = ''             repository name on github for the
31                                "fork me" badge
32