-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Header Banner Links and FAQ Anchors
- Loading branch information
github-actions
committed
Feb 29, 2024
1 parent
d094d8a
commit b6870cb
Showing
91 changed files
with
443 additions
and
5,140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<meta charset="utf-8"> | ||
|
||
{% include seo.html %} | ||
|
||
<!-- https://t.co/dKP3o1e --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<!-- TODO This is probably where our masthead highlighting is going wrong --> | ||
<script> | ||
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js '; | ||
</script> | ||
|
||
<!-- For all browsers --> | ||
<link rel="stylesheet" href="{{ '/assets/css/main_spec.css' | relative_url }}"> | ||
<link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> | ||
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css"></noscript> | ||
|
||
{% if site.head_scripts %} | ||
{% for script in site.head_scripts %} | ||
<script src="{{ script | relative_url }}"></script> | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{% capture logo_path %}{{ site.logo }}{% endcapture %} | ||
|
||
<div class="masthead"> | ||
<div class="masthead__inner-wrap"> | ||
<div class="masthead__menu"> | ||
<nav id="site-nav" class="greedy-nav"> | ||
{% unless logo_path == empty %} | ||
<a class="site-logo" href="{{ '/' | relative_url }}"><img src="{{ logo_path | relative_url }}" alt="{{ site.masthead_title | default: site.title }}"></a> | ||
{% endunless %} | ||
<a class="site-title" href="{{ '/' | relative_url }}"> | ||
{{ site.masthead_title | default: site.title }} | ||
{% if site.subtitle %}<span class="site-subtitle">{{ site.subtitle }}</span>{% endif %} | ||
</a> | ||
<ul class="visible-links"> | ||
{%- for link in site.data.navigation.main -%} | ||
<li class="masthead__menu-item"> | ||
<a href="{{ link.url | relative_url }}"{% if link.description %} title="{{ link.description }}"{% endif %}>{{ link.title }}</a> | ||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
<ul class="hidden-links hidden"></ul> | ||
</nav> | ||
</div> | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
--- | ||
|
||
<!doctype html> | ||
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js"> | ||
<head> | ||
{% include head_spec.html %} | ||
{% include head/custom.html %} | ||
</head> | ||
<body> | ||
{% include_cached masthead_spec.html %} | ||
{{ content }} | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* ========================================================================== | ||
BASE ELEMENTS | ||
========================================================================== */ | ||
|
||
html { | ||
/* sticky footer fix */ | ||
position: relative; | ||
min-height: 100%; | ||
} | ||
|
||
.masthead__menu-item a { | ||
color: rgb(255, 255, 255) !important; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
padding: $masthead-height 0 0; | ||
color: $text-color; | ||
font-family: $global-font-family; | ||
line-height: 1.5; | ||
|
||
&.overflow--hidden { | ||
/* when primary navigation is visible, the content in the background won't scroll */ | ||
overflow: hidden; | ||
} | ||
} | ||
|
||
/* reduce orphans and widows when printing */ | ||
|
||
p, | ||
pre, | ||
blockquote, | ||
ul, | ||
ol, | ||
dl, | ||
figure, | ||
table, | ||
fieldset { | ||
orphans: 3; | ||
widows: 3; | ||
} | ||
|
||
pre { | ||
overflow-x: auto; /* add scrollbars to wide code blocks*/ | ||
} | ||
|
||
|
||
/* Fix IE9 SVG bug */ | ||
|
||
svg:not(:root) { | ||
overflow: hidden; | ||
} | ||
|
||
/* | ||
Global animation transition | ||
========================================================================== */ | ||
|
||
b, | ||
i, | ||
strong, | ||
em, | ||
blockquote, | ||
p, | ||
q, | ||
span, | ||
figure, | ||
img, | ||
h1, | ||
h2, | ||
header, | ||
input, | ||
a, | ||
tr, | ||
td, | ||
form button, | ||
input[type="submit"], | ||
.btn, | ||
.highlight, | ||
.archive__item-teaser { | ||
-webkit-transition: $global-transition; | ||
transition: $global-transition; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.