No description
Find a file
2024-01-22 23:20:00 +01:00
demo_docs Enable Content on Index Page 2021-03-11 19:10:56 +01:00
sphinx_pyrmin_theme Release 0.0.8 2024-01-22 23:20:00 +01:00
.bumpversion.cfg Release 0.0.8 2024-01-22 23:20:00 +01:00
.gitignore Enable Content on Index Page 2021-03-11 19:10:56 +01:00
MANIFEST.in add pip support 2016-03-30 10:36:50 +02:00
README.rst Release 0.0.8 2024-01-22 23:20:00 +01:00
requirements.txt add requirement and sphinx patch 2016-03-30 22:59:29 +02:00
setup.py rebrand 2024-01-22 21:44:23 +01:00
VERSION Release 0.0.8 2024-01-22 23:20:00 +01:00

.. _`docs.pyrmin.dev`: https://docs.pyrmin.dev/
.. _pyrmin.dev: https://pyrmin.dev
.. _sphinx: http://www.sphinx-doc.org
.. _hidden: http://sphinx-doc.org/markup/toctree.html

*************************
PyRmin Sphinx Theme 0.0.8
*************************

.. contents:: 

View a working demo over on `docs.pyrmin.dev`_.

This is a mobile-friendly sphinx_ theme I made for pyrmin.dev_.
It's currently in development and includes some readthedocs.org variable checks that can be ignored
if you're just trying to use it on your project outside of that site.

Installation
============

Via package
-----------

Download the package or add it to your ``requirements.txt`` file:

.. code:: bash

    $ pip install https://gitlab.pyrmin.dev/PyRmin/sphinx_pyrmin_theme.git

In your ``conf.py`` file:

.. code:: python

    import sphinx_pyrmin_theme

    html_theme = "sphinx_pyrmin_theme"

    html_theme_path = [sphinx_pyrmin_theme.get_html_theme_path()]

Via git or download
-------------------

Symlink or subtree the ``sphinx_pyrmin_theme/sphinx_pyrmin_theme`` repository into your documentation at
``docs/_themes/sphinx_pyrmin_theme`` then add the following two settings to your Sphinx
conf.py file:

.. code:: python

    html_theme = "sphinx_pyrmin_theme"
    html_theme_path = ["_themes", ]