2. sphinx/themes¶
Contains this template html files (will be informative for me to study them)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | ~/sphinx/themes $ tree
.
├── agogo
│ ├── layout.html
│ ├── static
│ │ ├── agogo.css_t
│ │ ├── bgfooter.png
│ │ └── bgtop.png
│ └── theme.conf
├── basic
│ ├── changes
│ │ ├── frameset.html
│ │ ├── rstsource.html
│ │ └── versionchanges.html
│ ├── defindex.html
│ ├── domainindex.html
│ ├── genindex.html
│ ├── genindex-single.html
│ ├── genindex-split.html
│ ├── globaltoc.html
│ ├── layout.html
│ ├── localtoc.html
│ ├── opensearch.xml
│ ├── page.html
│ ├── relations.html
│ ├── searchbox.html
│ ├── search.html
│ ├── searchresults.html
│ ├── sourcelink.html
│ ├── static
│ │ ├── ajax-loader.gif
│ │ ├── basic.css_t
│ │ ├── comment-bright.png
│ │ ├── comment-close.png
│ │ ├── comment.png
│ │ ├── doctools.js
│ │ ├── down.png
│ │ ├── down-pressed.png
│ │ ├── file.png
│ │ ├── jquery-1.11.1.js
│ │ ├── jquery.js
│ │ ├── minus.png
│ │ ├── plus.png
│ │ ├── searchtools.js_t
│ │ ├── underscore-1.3.1.js
│ │ ├── underscore.js
│ │ ├── up.png
│ │ ├── up-pressed.png
│ │ └── websupport.js
│ └── theme.conf
├── bizstyle
│ ├── layout.html
│ ├── static
│ │ ├── background_b01.png
│ │ ├── bizstyle.css_t
│ │ ├── bizstyle.js_t
│ │ ├── css3-mediaqueries.js
│ │ └── css3-mediaqueries_src.js
│ └── theme.conf
├── classic
│ ├── layout.html
│ ├── static
│ │ ├── classic.css_t
│ │ └── sidebar.js_t
│ └── theme.conf
├── default
│ ├── static
│ │ └── default.css
│ └── theme.conf
├── epub
│ ├── epub-cover.html
│ ├── layout.html
│ ├── static
│ │ └── epub.css
│ └── theme.conf
├── haiku
│ ├── layout.html
│ ├── static
│ │ ├── alert_info_32.png
│ │ ├── alert_warning_32.png
│ │ ├── bg-page.png
│ │ ├── bullet_orange.png
│ │ └── haiku.css_t
│ └── theme.conf
├── nature
│ ├── static
│ │ └── nature.css_t
│ └── theme.conf
├── pyramid
│ ├── layout.html
│ ├── static
│ │ ├── dialog-note.png
│ │ ├── dialog-seealso.png
│ │ ├── dialog-todo.png
│ │ ├── dialog-topic.png
│ │ ├── dialog-warning.png
│ │ ├── epub.css
│ │ ├── footerbg.png
│ │ ├── headerbg.png
│ │ ├── ie6.css
│ │ ├── middlebg.png
│ │ ├── pyramid.css_t
│ │ └── transparent.gif
│ └── theme.conf
├── scrolls
│ ├── artwork
│ │ └── logo.svg
│ ├── layout.html
│ ├── static
│ │ ├── darkmetal.png
│ │ ├── headerbg.png
│ │ ├── logo.png
│ │ ├── metal.png
│ │ ├── navigation.png
│ │ ├── print.css
│ │ ├── scrolls.css_t
│ │ ├── theme_extras.js
│ │ ├── watermark_blur.png
│ │ └── watermark.png
│ └── theme.conf
├── sphinxdoc
│ ├── layout.html
│ ├── static
│ │ ├── contents.png
│ │ ├── navigation.png
│ │ └── sphinxdoc.css_t
│ └── theme.conf
└── traditional
├── static
│ └── traditional.css_t
└── theme.conf
26 directories, 103 files
|