sphinx-awesome

Sample documentation building with Awesome Sphinx Theme: https://sphinxawesome.xyz/


Read the Docs configuration file used to build this docs:

 1version: 2
 2
 3build:
 4  os: ubuntu-22.04
 5  tools:
 6    python: "3"
 7
 8sphinx:
 9  configuration: docs/conf.py
10
11python:
12  install:
13    - requirements: requirements.txt

Sphinx configuration file used to build this docs (see full file),

 1# -*- coding: utf-8 -*-
 2
 3# Default settings
 4project = 'Test Builds'
 5extensions = [
 6    'sphinx_autorun',
 7]
 8
 9# Include all your settings here
10html_theme = 'sphinxawesome_theme'
11
12
13
14

>>> # Build at
>>> import datetime
>>> datetime.datetime.utcnow()  # UTC
datetime.datetime(2023, 7, 4, 8, 10, 16, 833719)