diff --git a/.github/workflows/build-book.yml b/.github/workflows/build-book.yml index bebce10e..1bf13b1a 100644 --- a/.github/workflows/build-book.yml +++ b/.github/workflows/build-book.yml @@ -6,7 +6,7 @@ on: [pull_request, workflow_dispatch] # This job installs dependencies, builds the book, and makes the html available to download jobs: - deploy-book: + build-book: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/_config.yml b/_config.yml index ed86b34b..1f2730c2 100644 --- a/_config.yml +++ b/_config.yml @@ -4,7 +4,7 @@ copyright : "2022" # Copyright year to be placed in the footer logo : 'images/book-logo-smaller.png' exclude_patterns : [_build, Thumbs.db, .DS_Store, "**.ipynb_checkpoints", '_unused/**', 'nbs/*'] -# only_build_toc_files: true +only_build_toc_files: true execute: execute_notebooks: "auto" @@ -33,6 +33,8 @@ sphinx: html_js_files: # Only needed if plotly is used - https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js + templates_path: + - _templates latex: latex_engine: xelatex diff --git a/_templates/layout.html b/_templates/layout.html new file mode 100644 index 00000000..d7ca643c --- /dev/null +++ b/_templates/layout.html @@ -0,0 +1,5 @@ +{%- extends "!layout.html" %} +{%- block extrahead %} +{{ super() }} + +{%- endblock %}