blob: cf68937ee44b53e6c4a2130a1e49bf8c778549d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 %}
|