From 3f450042d2dee58c11faab15318e2b5b5f31a242 Mon Sep 17 00:00:00 2001 From: Ryan Soklaski Date: Sat, 30 Jan 2021 13:31:46 -0500 Subject: [PATCH] replace 'View code source' with a 'Star on GitHub' button --- Python/_templates/breadcrumbs.html | 8 ++++++++ Python/_templates/layout.html | 4 ++++ 2 files changed, 12 insertions(+) create mode 100644 Python/_templates/breadcrumbs.html create mode 100644 Python/_templates/layout.html diff --git a/Python/_templates/breadcrumbs.html b/Python/_templates/breadcrumbs.html new file mode 100644 index 00000000..e17d9658 --- /dev/null +++ b/Python/_templates/breadcrumbs.html @@ -0,0 +1,8 @@ +{%- extends "sphinx_rtd_theme/breadcrumbs.html" %} + + +{% block breadcrumbs_aside %} +
  • + Star on GitHub +
  • +{% endblock %} diff --git a/Python/_templates/layout.html b/Python/_templates/layout.html new file mode 100644 index 00000000..62e2826a --- /dev/null +++ b/Python/_templates/layout.html @@ -0,0 +1,4 @@ +{% extends '!layout.html' %} +{%- block extrahead %} + +{% endblock %}