From d60844ea7c04970256ea8dda3a6602c674f9a46a Mon Sep 17 00:00:00 2001 From: Shravan Goswami Date: Thu, 13 Nov 2025 14:26:00 +0530 Subject: [PATCH 1/3] use new logo in navbar and move footer to separate file --- README.md | 8 +++++++ _brand.yml | 4 ++++ _includes/footer.html | 45 +++++++++++++++++++++++++++++++++++++++ _quarto.yml | 49 ++----------------------------------------- 4 files changed, 59 insertions(+), 47 deletions(-) create mode 100644 _brand.yml create mode 100644 _includes/footer.html diff --git a/README.md b/README.md index ffab706cf..2f9c029fe 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ +

+ + + Turing.jl logo + +

+

Bayesian inference with probabilistic programming

+ # Turing.jl Documentation and Tutorials **https://turinglang.org/docs/** diff --git a/_brand.yml b/_brand.yml new file mode 100644 index 000000000..65b8c742c --- /dev/null +++ b/_brand.yml @@ -0,0 +1,4 @@ +logo: + medium: + light: https://turinglang.org/assets/logo/turing-logo-light.svg + dark: https://turinglang.org/assets/logo/turing-logo-dark.svg diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 000000000..275032a95 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,45 @@ + \ No newline at end of file diff --git a/_quarto.yml b/_quarto.yml index 10d84b1dd..1649584a6 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -26,7 +26,7 @@ website: location: navbar type: overlay navbar: - logo: "/assets/images/turing-logo.svg" + title: false logo-href: https://turinglang.org/ left: - text: Get Started @@ -172,52 +172,7 @@ format: } include-after-body: - - text: | - + file: _includes/footer.html execute: echo: true From ae08d30f0edd5c231c4f5708ae8fea72b2b23882 Mon Sep 17 00:00:00 2001 From: Shravan Goswami Date: Thu, 13 Nov 2025 14:28:17 +0530 Subject: [PATCH 2/3] update footer --- _includes/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/footer.html b/_includes/footer.html index 275032a95..de9c67edb 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -42,4 +42,4 @@
Supported by leading researchers
Website Source - \ No newline at end of file + From ca843f0b72c13c85b7867fee1b141566b2993a48 Mon Sep 17 00:00:00 2001 From: Shravan Goswami Date: Thu, 13 Nov 2025 18:24:41 +0530 Subject: [PATCH 3/3] remove logo from sidebar --- theming/rules/_quarto-tweaks.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/theming/rules/_quarto-tweaks.scss b/theming/rules/_quarto-tweaks.scss index 5049754b4..c79f1151d 100644 --- a/theming/rules/_quarto-tweaks.scss +++ b/theming/rules/_quarto-tweaks.scss @@ -122,3 +122,7 @@ pre { --bs-tooltip-color: $black !important; --bs-tooltip-bg: $white !important; } + +.sidebar-header { + display: none; +} \ No newline at end of file