diff options
Diffstat (limited to 'python/templates')
-rw-r--r-- | python/templates/includes/layout/head.html | 6 | ||||
-rw-r--r-- | python/templates/includes/layout/header.html | 6 | ||||
-rw-r--r-- | python/templates/layout/base.html | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/python/templates/includes/layout/head.html b/python/templates/includes/layout/head.html index d8ed708..22bfa58 100644 --- a/python/templates/includes/layout/head.html +++ b/python/templates/includes/layout/head.html @@ -11,8 +11,8 @@ <meta name="twitter:image" content="https://www.gentoo.org/assets/img/logo/gentoo-g.png"> <link rel="apple-touch-icon" href="https://www.gentoo.org/assets/img/logo/icon-192.png"> <link rel="icon" sizes="192x192" href="https://www.gentoo.org/assets/img/logo/icon-192.png"> - <link href="{{ site.cdnurl }}/bootstrap.min.css" rel="stylesheet" media="screen"> - <link href="{{ site.cdnurl }}/tyrian.min.css" rel="stylesheet" media="screen"> + <link href="https://assets.gentoo.org/tyrian/bootstrap.min.css" rel="stylesheet" media="screen"> + <link href="https://assets.gentoo.org/tyrian/tyrian.min.css" rel="stylesheet" media="screen"> <link href="https://www.gentoo.org/assets/css/screen.css" rel="stylesheet" media="screen"> {% if page.extracss %}{% for css in page.extracss %}<link href="https://www.gentoo.org/assets/css/{{ css }}" rel="stylesheet" media="screen">{% endfor %}{% endif %} <link rel="icon" href="/favicon.ico" type="image/x-icon"> @@ -22,4 +22,4 @@ <link rel="search" type="application/opensearchdescription+xml" href="https://www.gentoo.org/search/packages-gentoo-org.xml" title="Gentoo Packages"> <link rel="search" type="application/opensearchdescription+xml" href="https://www.gentoo.org/search/archives-gentoo-org.xml" title="Gentoo List Archives"> {% if page.meta %}{{ page.meta|safe|escape }}{% endif %} -</head>
\ No newline at end of file +</head> diff --git a/python/templates/includes/layout/header.html b/python/templates/includes/layout/header.html index 8b6bc63..585ea59 100644 --- a/python/templates/includes/layout/header.html +++ b/python/templates/includes/layout/header.html @@ -28,8 +28,8 @@ </div> <div class="logo"> <a href="/" title="Back to the homepage" class="site-logo"> - <object data="{{ site.cdnurl }}/site-logo.svg" type="image/svg+xml"> - <img src="{{ site.cdnurl }}/site-logo.png" alt="Gentoo Linux Logo"> + <object data="https://assets.gentoo.org/tyrian/site-logo.svg" type="image/svg+xml"> + <img src="https://assets.gentoo.org/tyrian/site-logo.png" alt="Gentoo Linux Logo"> </object> </a> </div> @@ -83,4 +83,4 @@ </div> </nav> {% endif %} -</header>
\ No newline at end of file +</header> diff --git a/python/templates/layout/base.html b/python/templates/layout/base.html index eaa86f3..2344acd 100644 --- a/python/templates/layout/base.html +++ b/python/templates/layout/base.html @@ -14,8 +14,8 @@ {% include "includes/layout/footer.html" %} - <script src="{{ site.cdnurl }}/jquery.min.js"></script> - <script src="{{ site.cdnurl }}/bootstrap.min.js"></script> + <script src="https://assets.gentoo.org/tyrian/jquery.min.js"></script> + <script src="https://assets.gentoo.org/tyrian/bootstrap.min.js"></script> {% if page.extrajs %}{% for js in page.extrajs %}<script src="{{ STATIC_ROOT }}/js/{{ js }}"></script>{% endfor %}{% endif %} {% if page.inlinejs %}<script>{{ page.inlinejs }}</script>{% endif %} <script type="text/javascript"> |