+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docsrc/README.md b/docsrc/README.md
new file mode 100644
index 00000000..676b538d
--- /dev/null
+++ b/docsrc/README.md
@@ -0,0 +1,13 @@
+This directory holds the sources that build the porymap documentation website. It uses Sphinx to build a static website, and copy the results to the `docs/` directory for GitHub Pages.
+
+## Setup
+Sphinx uses Python, so you can use `pip` to install the dependencies:
+```
+pip install -r requirements.txt
+```
+
+## Build
+This will build the static site and copy the files to the root-level `docs/` directory. The GitHub Pages site will automatically update when the commit is merged to porymap's `master` branch.
+```
+make github
+```
diff --git a/docsrc/conf.py b/docsrc/conf.py
index 6e3d4dea..f0f7a892 100644
--- a/docsrc/conf.py
+++ b/docsrc/conf.py
@@ -74,7 +74,7 @@ pygments_style = None
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
-html_theme = 'alabaster'
+html_theme = 'sphinx_rtd_theme'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
diff --git a/docsrc/requirements.txt b/docsrc/requirements.txt
new file mode 100644
index 00000000..82133027
--- /dev/null
+++ b/docsrc/requirements.txt
@@ -0,0 +1,2 @@
+sphinx
+sphinx_rtd_theme