diff options
Diffstat (limited to 'debian/patches/0002-Remove-external-reference-to-github.blog.patch')
-rw-r--r-- | debian/patches/0002-Remove-external-reference-to-github.blog.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/patches/0002-Remove-external-reference-to-github.blog.patch b/debian/patches/0002-Remove-external-reference-to-github.blog.patch new file mode 100644 index 0000000..cf68937 --- /dev/null +++ b/debian/patches/0002-Remove-external-reference-to-github.blog.patch @@ -0,0 +1,22 @@ +From: "Jeremy T. Bouse" <jbouse@debian.org> +Date: Sun, 13 Jun 2021 15:08:28 -0400 +Subject: Remove external reference to github.blog + +Forwarded: not-needed +--- + alabaster/layout.html | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/alabaster/layout.html b/alabaster/layout.html +index a7ca710..65d35c3 100644 +--- a/alabaster/layout.html ++++ b/alabaster/layout.html +@@ -102,7 +102,7 @@ + + {% if theme_github_banner|lower != 'false' %} + <a href="https://github.com/{{ theme_github_user }}/{{ theme_github_repo }}" class="github"> +- <img style="position: absolute; top: 0; right: 0; border: 0;" src="{{ pathto('_static/' ~ theme_github_banner, 1) if theme_github_banner|lower != 'true' else 'https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png' }}" alt="Fork me on GitHub" class="github"/> ++ <img style="position: absolute; top: 0; right: 0; border: 0;" src="{{ pathto('_static/' ~ theme_github_banner, 1) if theme_github_banner|lower != 'true' else pathto('_static/forkme_right_darkblue_121621.png', 1) }}" alt="Fork me on GitHub" class="github"/> + </a> + {% endif %} + |