-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #166 from janash/doc-theme-update
update theme for docs
- Loading branch information
Showing
7 changed files
with
111 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Developer Guide | ||
=============== | ||
|
||
This page details how to contribute to {{cookiecutter.project_name}}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
Getting Started | ||
=============== | ||
|
||
This page details how to get started with {{cookiecutter.project_name}}. | ||
|
||
You might choose to write an overview tutorial or set of tutorials. | ||
|
||
.. code-block:: python | ||
import {{cookiecutter.repo_name}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,29 @@ | ||
name: docs | ||
name: docs_{{cookiecutter.project_name}} | ||
channels: | ||
{% if cookiecutter.dependency_source == 'Prefer conda-forge over the default anaconda channel with pip fallback' %} | ||
- conda-forge | ||
{% endif %} | ||
- defaults | ||
dependencies: | ||
# Base depends | ||
- python | ||
- pip | ||
{% if cookiecutter.dependency_source == 'Prefer conda-forge over the default anaconda channel with pip fallback' %} | ||
- pydata-sphinx-theme | ||
- sphinx-design | ||
- sphinx-copybutton | ||
{% endif %} | ||
|
||
{% if cookiecutter.dependency_source == 'Prefer default anaconda channel with pip fallback' %} | ||
# Pip-only installs | ||
- pip: | ||
- -e ../ | ||
- pydata-sphinx-theme | ||
- sphinx-design | ||
- sphinx-copybutton | ||
{% else %} | ||
|
||
# Pip-only installs | ||
#- pip: | ||
- pip: | ||
- -e ../ | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
User Guide | ||
=============== | ||
|
||
This page details how to use {{cookiecutter.project_name}}. |