sphinx-themes / sphinx-themes.org

A showcase for Sphinx documentation themes
https://sphinx-themes.org
BSD 2-Clause "Simplified" License
234 stars 44 forks source link

Port a few more themes to v2 #60

Closed mgeier closed 3 years ago

mgeier commented 3 years ago

To advance #25.

Here's the previous conf.py entries:

sphinx-rigado-theme:

html_theme = 'sphinx_rigado_theme'

sphinx-redactor-theme:

html_theme = 'sphinx_redactor_theme'
import sphinx_redactor_theme
html_theme_path = [sphinx_redactor_theme.get_html_theme_path()]

sphinx-pdj-theme:

html_theme = 'sphinx_pdj_theme'
import sphinx_pdj_theme
html_theme_path = [sphinx_pdj_theme.get_html_theme_path()]

sphinx-opnfv-theme:

html_theme = 'opnfv'

sphinx-nervproject-theme:

html_theme = 'nervproject'

sphinx-modern-theme:

html_theme = 'sphinx_modern_theme'
import sphinx_modern_theme
html_theme_path = [sphinx_modern_theme.get_html_theme_path()]

sphinx-material:

html_theme = 'sphinx_material'

sphinx-kr-theme:

html_theme = 'kr'

sphinx-ioam-theme:

html_theme = 'sphinx_ioam_theme'

sphinx-foundation-theme:

html_theme = 'foundation'
import sphinx_foundation_theme
html_theme_path = sphinx_foundation_theme.get_html_theme_path()

sphinx-fossasia-theme:

html_theme = 'sphinx_fossasia_theme'

sphinx-corlab-theme:

import corlab_theme
html_theme      = 'corlab_theme'
html_theme_path = [ corlab_theme.get_theme_dir() ]

sphinx-catalystcloud-theme:

html_theme = 'sphinx_catalystcloud_theme'
import sphinx_catalystcloud_theme
html_theme_path = [sphinx_catalystcloud_theme.get_html_theme_path()]

sphinx-bulma-theme:

html_theme = 'bulma'

sphinx-bootstrap-theme:

html_theme = 'bootstrap'
import sphinx_bootstrap_theme
html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()

sphinx-boost:

html_theme = 'boost'
import sphinx_boost
html_theme_path = [sphinx_boost.get_html_theme_path()]
mgeier commented 3 years ago

What about merging this?

Is there something left to do from my side?

pradyunsg commented 3 years ago

Nope -- just had this buried in my notifications. Thanks for the nudge! ^>^

mgeier commented 3 years ago

Thanks!

I guess now we are already beyond 50% of the themes ported to the new site, right?

Can the new one now be "activated"?