Skip to content

Commit 87bd446

Browse files
authored
Theme
1 parent 23e66c7 commit 87bd446

File tree

6 files changed

+46
-539
lines changed

6 files changed

+46
-539
lines changed

Pipfile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ mock = "*"
1717
setuptools-scm = "*"
1818
wheel = "*"
1919
pre-commit = "*"
20+
sphinx-palewire-theme = "*"
21+
myst-parser = "*"
2022

2123
[requires]
2224
python_version = "3.11"

Pipfile.lock

+25-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_static/css/custom.css

-205
This file was deleted.

docs/conf.py

+19-25
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,32 @@
1-
import typing
1+
"""Configure Sphinx configuration."""
2+
from __future__ import annotations
3+
4+
import os
5+
import sys
6+
from typing import Any
27
from datetime import datetime
38

4-
extensions: typing.List[typing.Any] = []
5-
templates_path = ["_templates"]
6-
source_suffix = ".rst"
9+
sys.path.insert(0, os.path.abspath(".."))
10+
11+
source_suffix = ".md"
712
master_doc = "index"
813

914
project = "django-postgres-copy"
1015
year = datetime.now().year
11-
copyright = f"{year} Ben Welsh"
16+
copyright = f"{year} palewire"
1217

1318
exclude_patterns = ["_build"]
1419

15-
html_theme = "alabaster"
16-
html_sidebars = {
17-
"**": [
18-
# 'about.html',
19-
# 'navigation.html',
20-
"relations.html",
21-
"searchbox.html",
22-
"donate.html",
23-
]
24-
}
25-
html_theme_options = {
20+
html_theme = "palewire"
21+
html_sidebars: dict[Any, Any] = {}
22+
html_theme_options: dict[Any, Any] = {
2623
"canonical_url": f"https://palewi.re/docs/{project}/",
27-
"github_user": "palewire",
28-
"github_repo": project,
29-
"donate_url": "https://github.com/sponsors/palewire",
30-
"show_powered_by": False,
24+
"nosidebar": True,
3125
}
3226

33-
html_static_path = ["_static"]
34-
html_css_files = [
35-
"css/custom.css",
36-
]
37-
3827
pygments_style = "sphinx"
28+
29+
extensions = [
30+
"sphinx.ext.autodoc",
31+
"sphinx.ext.napoleon",
32+
]

docs/index.rst

-45
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,3 @@
1-
.. raw:: html
2-
3-
<nav>
4-
<div class="row">
5-
<div class="sevencol">
6-
<div class="shingle">
7-
<a href="https://palewi.re/">
8-
<div rel="rnews:copyrightedBy rnews:hasSource rnews:providedBy">
9-
<div about="http://palewi.re/" typeof="rnews:Organization">
10-
<div property="rnews:name">palewire</div>
11-
</div>
12-
</div>
13-
</a>
14-
</div>
15-
</div>
16-
<div class="fivecol last links">
17-
<ul>
18-
<li>
19-
<a href="http://palewi.re/posts/" title="Posts">
20-
Posts
21-
</a>
22-
</li>
23-
<li>
24-
<a href="http://palewi.re/work/" title="Work">
25-
Work
26-
</a>
27-
</li>
28-
<li>
29-
<a href="http://palewi.re/talks/" title="Talks">
30-
Talks
31-
</a>
32-
</li>
33-
<li>
34-
<a href="http://palewi.re/who-is-ben-welsh/" title="Who is Ben Welsh?">
35-
About
36-
</a>
37-
</li>
38-
</ul>
39-
</div>
40-
</div>
41-
</nav>
42-
<div class="row topbar">
43-
<div class="twelvecol last"></div>
44-
</div>
45-
461
====================
472
django-postgres-copy
483
====================

0 commit comments

Comments
 (0)