public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/tyrian-sphinx-theme:master commit in: tyrian_sphinx_theme/
@ 2023-09-01 10:26 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2023-09-01 10:26 UTC (permalink / raw
  To: gentoo-commits

commit:     52a9d1e397238096b4a0397b9a66d2030e29a557
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  1 09:58:23 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep  1 09:58:23 2023 +0000
URL:        https://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git/commit/?id=52a9d1e3

Fix CSS header compatibility with Sphinx-7

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 tyrian_sphinx_theme/layout.html | 6 +++---
 tyrian_sphinx_theme/theme.conf  | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/tyrian_sphinx_theme/layout.html b/tyrian_sphinx_theme/layout.html
index 3e8accc..b18f02e 100644
--- a/tyrian_sphinx_theme/layout.html
+++ b/tyrian_sphinx_theme/layout.html
@@ -25,9 +25,9 @@
 {%- endmacro %}
 
 {%- macro css() %}
-    <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
-    <link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
-    <link rel="stylesheet" href="{{ pathto('_static/custom.css', 1) }}" type="text/css" />
+{%- for css in css_files %}
+    {{ css_tag(css) }}
+{%- endfor %}
 
     <link rel="icon" href="https://www.gentoo.org/favicon.ico" type="image/x-icon">
     <link href="https://assets.gentoo.org/tyrian/bootstrap.min.css" rel="stylesheet" media="screen">

diff --git a/tyrian_sphinx_theme/theme.conf b/tyrian_sphinx_theme/theme.conf
index 60ccefb..3616f25 100644
--- a/tyrian_sphinx_theme/theme.conf
+++ b/tyrian_sphinx_theme/theme.conf
@@ -1,6 +1,6 @@
 [theme]
 inherit = basic
-stylesheet = tyrian-sphinx-theme.css
+stylesheet = tyrian-sphinx-theme.css,custom.css
 sidebars = localtoc.html
 
 [options]


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/tyrian-sphinx-theme:master commit in: tyrian_sphinx_theme/
@ 2023-09-01 10:26 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2023-09-01 10:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ac2dbd5bec47301e76e64372b42ba2241b698aed
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  1 09:59:54 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep  1 09:59:54 2023 +0000
URL:        https://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git/commit/?id=ac2dbd5b

Bump to version to 0.0.8

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 tyrian_sphinx_theme/_version.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tyrian_sphinx_theme/_version.py b/tyrian_sphinx_theme/_version.py
index dc9f0fe..87b9c6b 100644
--- a/tyrian_sphinx_theme/_version.py
+++ b/tyrian_sphinx_theme/_version.py
@@ -1,2 +1,2 @@
-__version_info__ = (0, 0, 7)
+__version_info__ = (0, 0, 8)
 __version__ = ".".join(map(str, __version_info__))


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/tyrian-sphinx-theme:master commit in: tyrian_sphinx_theme/
@ 2023-09-01 10:29 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2023-09-01 10:29 UTC (permalink / raw
  To: gentoo-commits

commit:     d7410dcf46d34c0565c63b0169480d5c548e20e3
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 24 14:36:18 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep  1 10:27:46 2023 +0000
URL:        https://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git/commit/?id=d7410dcf

Update copyright holder and years

"Gentoo Authors" according to GLEP 76.

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
Pull-Request: https://github.com/arzano/tyrian_sphinx_theme/pull/3
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 tyrian_sphinx_theme/layout.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tyrian_sphinx_theme/layout.html b/tyrian_sphinx_theme/layout.html
index b18f02e..cd1d9bc 100644
--- a/tyrian_sphinx_theme/layout.html
+++ b/tyrian_sphinx_theme/layout.html
@@ -388,7 +388,7 @@
                     </ul>
                 </div>
                 <div class="col-xs-10 col-sm-9 col-md-10">
-                    <strong>© 2001–2020 Gentoo Foundation, Inc.</strong><br>
+                    <strong>© 2001–2023 Gentoo Authors</strong><br>
                     <small>
                         Gentoo is a trademark of the Gentoo Foundation, Inc.
                         The contents of this document, unless otherwise expressly stated, are licensed under the


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/tyrian-sphinx-theme:master commit in: tyrian_sphinx_theme/
  2023-09-01 10:29 [gentoo-commits] proj/tyrian-sphinx-theme:v0.0.8 " Michał Górny
@ 2023-09-01 10:29 ` Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2023-09-01 10:29 UTC (permalink / raw
  To: gentoo-commits

commit:     beb9d73d003288e438833898bdfbd83df30f9a57
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  1 10:29:07 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Sep  1 10:29:07 2023 +0000
URL:        https://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git/commit/?id=beb9d73d

Remove social media links

Bug: https://github.com/arzano/tyrian_sphinx_theme/issues/4
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 tyrian_sphinx_theme/layout.html | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/tyrian_sphinx_theme/layout.html b/tyrian_sphinx_theme/layout.html
index cd1d9bc..be64a2d 100644
--- a/tyrian_sphinx_theme/layout.html
+++ b/tyrian_sphinx_theme/layout.html
@@ -380,13 +380,6 @@
                 </div>
             </div>
             <div class="row">
-                <div class="col-xs-2 col-sm-3 col-md-2">
-                    <ul class="footerlinks three-icons">
-                        <li><a href="https://twitter.com/gentoo" title="@Gentoo on Twitter"><span class="fa fa-twitter fa-fw"></span></a></li>
-                        <li><a href="https://plus.google.com/+Gentoo" title="+Gentoo on Google+"><span class="fa fa-google-plus fa-fw"></span></a></li>
-                        <li><a href="https://www.facebook.com/gentoo.org" title="Gentoo on Facebook"><span class="fa fa-facebook fa-fw"></span></a></li>
-                    </ul>
-                </div>
                 <div class="col-xs-10 col-sm-9 col-md-10">
                     <strong>© 2001–2023 Gentoo Authors</strong><br>
                     <small>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/tyrian-sphinx-theme:master commit in: tyrian_sphinx_theme/
@ 2023-10-11 17:24 Ulrich Müller
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Müller @ 2023-10-11 17:24 UTC (permalink / raw
  To: gentoo-commits

commit:     8276e188246681737aea446e74b9c877f5ee5f02
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 11 16:58:33 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Oct 11 16:58:33 2023 +0000
URL:        https://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git/commit/?id=8276e188

Link to privacy policy

Bug: https://bugs.gentoo.org/613938
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 tyrian_sphinx_theme/layout.html | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tyrian_sphinx_theme/layout.html b/tyrian_sphinx_theme/layout.html
index be64a2d..1abdf1c 100644
--- a/tyrian_sphinx_theme/layout.html
+++ b/tyrian_sphinx_theme/layout.html
@@ -380,6 +380,9 @@
                 </div>
             </div>
             <div class="row">
+                <div class="text-center">
+                    <a href="https://wiki.gentoo.org/wiki/Foundation:Privacy_Policy">Privacy Policy</a>
+                </div>
                 <div class="col-xs-10 col-sm-9 col-md-10">
                     <strong>© 2001–2023 Gentoo Authors</strong><br>
                     <small>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/tyrian-sphinx-theme:master commit in: tyrian_sphinx_theme/
@ 2024-03-23 17:02 Ulrich Müller
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Müller @ 2024-03-23 17:02 UTC (permalink / raw
  To: gentoo-commits

commit:     ae37c8144624d662424df8a61d2cbabb40f93e43
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 23 17:00:38 2024 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Mar 23 17:00:38 2024 +0000
URL:        https://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git/commit/?id=ae37c814

layout.html: Add Gentoo e.V. to page footer

Bug: https://bugs.gentoo.org/927555
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 tyrian_sphinx_theme/layout.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tyrian_sphinx_theme/layout.html b/tyrian_sphinx_theme/layout.html
index 1abdf1c..147559c 100644
--- a/tyrian_sphinx_theme/layout.html
+++ b/tyrian_sphinx_theme/layout.html
@@ -386,7 +386,7 @@
                 <div class="col-xs-10 col-sm-9 col-md-10">
                     <strong>© 2001–2023 Gentoo Authors</strong><br>
                     <small>
-                        Gentoo is a trademark of the Gentoo Foundation, Inc.
+                        Gentoo is a trademark of the Gentoo Foundation, Inc. and of Förderverein Gentoo e.V.
                         The contents of this document, unless otherwise expressly stated, are licensed under the
                         <a href="{{ theme_license_link }}" rel="license">{{ theme_license }}</a> license.
                         The <a href="https://www.gentoo.org/inside-gentoo/foundation/name-logo-guidelines.html">Gentoo Name and Logo Usage Guidelines</a> apply.


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/tyrian-sphinx-theme:master commit in: tyrian_sphinx_theme/
@ 2024-03-23 17:03 Ulrich Müller
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Müller @ 2024-03-23 17:03 UTC (permalink / raw
  To: gentoo-commits

commit:     e6af26effed36994653549ac18aaf2b9be13da54
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 23 17:03:08 2024 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Mar 23 17:03:08 2024 +0000
URL:        https://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git/commit/?id=e6af26ef

layout.html: Update copyright years

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 tyrian_sphinx_theme/layout.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tyrian_sphinx_theme/layout.html b/tyrian_sphinx_theme/layout.html
index 147559c..47177bd 100644
--- a/tyrian_sphinx_theme/layout.html
+++ b/tyrian_sphinx_theme/layout.html
@@ -384,7 +384,7 @@
                     <a href="https://wiki.gentoo.org/wiki/Foundation:Privacy_Policy">Privacy Policy</a>
                 </div>
                 <div class="col-xs-10 col-sm-9 col-md-10">
-                    <strong>© 2001–2023 Gentoo Authors</strong><br>
+                    <strong>© 2001–2024 Gentoo Authors</strong><br>
                     <small>
                         Gentoo is a trademark of the Gentoo Foundation, Inc. and of Förderverein Gentoo e.V.
                         The contents of this document, unless otherwise expressly stated, are licensed under the


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-03-23 17:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-01 10:26 [gentoo-commits] proj/tyrian-sphinx-theme:master commit in: tyrian_sphinx_theme/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-03-23 17:03 Ulrich Müller
2024-03-23 17:02 Ulrich Müller
2023-10-11 17:24 Ulrich Müller
2023-09-01 10:29 [gentoo-commits] proj/tyrian-sphinx-theme:v0.0.8 " Michał Górny
2023-09-01 10:29 ` [gentoo-commits] proj/tyrian-sphinx-theme:master " Michał Górny
2023-09-01 10:29 Michał Górny
2023-09-01 10:26 Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox