Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions assets/theme-css/navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
.navbar-logo-text {
font-size: 1.25rem;
font-weight: 700;
font-family: "Lato", sans-serif;
}
.navbar .container {
min-height: 4rem;
Expand Down
3 changes: 0 additions & 3 deletions doc/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ params:
image: logo.svg
text: Scientific Python Hugo Theme
link: /
fonts:
- name: "Lato"
weights: [400, 900]
hero:
title: Scientific Python Theme
image: logo.svg
Expand Down
3 changes: 0 additions & 3 deletions exampleSite/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ params:
image: logo.svg
text: Scientific Python Hugo Theme
link: /
fonts:
- name: "Lato"
weights: [400, 900]
hero:
title: Example Site
image: logo.svg
Expand Down
7 changes: 6 additions & 1 deletion layouts/partials/css.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@

<link rel="icon" href="{{ "images/favicon.ico" | relURL }}" />

<!-- Fallback font for symbols (such as "🛈"). --
<!-- Fallback font for symbols (such as "🛈"). -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2">

<!-- Default theme font (Lato). -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700">

<!-- Process and include Sass files. -->
{{- $sass := append (resources.Get "theme-css/sphinx-design/index.scss")
(resources.Get "theme-css/pst/bootstrap.scss")
Expand Down
Loading