Skip to content
This repository was archived by the owner on Apr 24, 2020. It is now read-only.

ENH: Basic generic theme - css, js, tpl #697

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ endif

website:
ifneq ($(strip $(parallel)),)
@$(SPHINXBUILD) -M jupyter "$(SOURCEDIR)" "$(BUILDWEBSITE)" $(FILES) $(SPHINXOPTS) $(O) -D jupyter_make_site=1 -D jupyter_generate_html=1 -D jupyter_download_nb=1 -D jupyter_execute_notebooks=1 -D jupyter_target_html=1 -D jupyter_download_nb_image_urlpath="https://s3-ap-southeast-2.amazonaws.com/python.quantecon.org/_static/" -D jupyter_images_markdown=0 -D jupyter_html_template="python-html.tpl" -D jupyter_download_nb_urlpath="https://python.quantecon.org/" -D jupyter_coverage_dir=$(BUILDCOVERAGE) -D jupyter_number_workers=$(parallel)
@$(SPHINXBUILD) -M jupyter "$(SOURCEDIR)" "$(BUILDWEBSITE)" $(FILES) $(SPHINXOPTS) $(O) -D jupyter_make_site=1 -D jupyter_generate_html=1 -D jupyter_download_nb=1 -D jupyter_execute_notebooks=1 -D jupyter_target_html=1 -D jupyter_download_nb_image_urlpath="https://s3-ap-southeast-2.amazonaws.com/python.quantecon.org/_static/" -D jupyter_images_markdown=0 -D jupyter_html_template="html.tpl" -D jupyter_download_nb_urlpath="https://python.quantecon.org/" -D jupyter_coverage_dir=$(BUILDCOVERAGE) -D jupyter_number_workers=$(parallel)

else
@$(SPHINXBUILD) -M jupyter "$(SOURCEDIR)" "$(BUILDWEBSITE)" $(FILES) $(SPHINXOPTS) $(O) -D jupyter_make_site=1 -D jupyter_generate_html=1 -D jupyter_download_nb=1 -D jupyter_execute_notebooks=1 -D jupyter_target_html=1 -D jupyter_download_nb_image_urlpath="https://s3-ap-southeast-2.amazonaws.com/python.quantecon.org/_static/" -D jupyter_images_markdown=0 -D jupyter_html_template="python-html.tpl" -D jupyter_download_nb_urlpath="https://python.quantecon.org/" -D jupyter_coverage_dir=$(BUILDCOVERAGE)
@$(SPHINXBUILD) -M jupyter "$(SOURCEDIR)" "$(BUILDWEBSITE)" $(FILES) $(SPHINXOPTS) $(O) -D jupyter_make_site=1 -D jupyter_generate_html=1 -D jupyter_download_nb=1 -D jupyter_execute_notebooks=1 -D jupyter_target_html=1 -D jupyter_download_nb_image_urlpath="https://s3-ap-southeast-2.amazonaws.com/python.quantecon.org/_static/" -D jupyter_images_markdown=0 -D jupyter_html_template="html.tpl" -D jupyter_download_nb_urlpath="https://python.quantecon.org/" -D jupyter_coverage_dir=$(BUILDCOVERAGE)
endif

pdf:
Expand Down
4 changes: 4 additions & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@
project = 'QuantEcon.lectures-python3'
copyright = '2019, Thomas J. Sargent and John Stachurski'
author = 'Thomas J. Sargent and John Stachurski'
site_title = 'Jupinx Base Theme'
site_description = ''
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be = project

site_keywords = ''
site_author = ''
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the difference between this and author?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these should be removed and added to jupyter_ section


# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
11 changes: 0 additions & 11 deletions source/rst/index_postgrad.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,6 @@

about_lectures
index_learning_python
index_python_scientific_libraries
index_advanced_python_programming
index_data_and_empirics
index_tools_and_techniques_grad
index_dynamic_programming_grad
index_lq_control_grad
index_multi_agent_models_grad
index_time_series_models_grad
index_asset_pricing_grad
index_dynamic_programming_squared
zreferences


.. image:: http://assets.quantecon.org/img/banner.png
Expand Down
12 changes: 0 additions & 12 deletions source/rst/index_toc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,6 @@

about_lectures
index_learning_python
index_python_scientific_libraries
index_advanced_python_programming
index_data_and_empirics
index_tools_and_techniques
index_dynamic_programming
index_lq_control
index_multi_agent_models
index_hs_recursive_models
index_classic_linear_models
index_time_series_models
index_asset_pricing
index_dynamic_programming_squared
zreferences


Expand Down
9 changes: 0 additions & 9 deletions source/rst/index_undergrad.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,6 @@

about_lectures
index_learning_python
index_python_scientific_libraries
index_advanced_python_programming
index_data_and_empirics
index_tools_and_techniques_undergrad
index_dynamic_programming_undergrad
index_lq_control_undergrad
index_multi_agent_models_undergrad
index_asset_pricing_undergrad
zreferences


|
Expand Down
Loading