-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change updates the furo generator files to remove inline styles …
…and scripts to make them compatible with the new security headers
- Loading branch information
Showing
7 changed files
with
259 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
body { | ||
--color-code-background: #f8f8f8; | ||
--color-code-foreground: black; | ||
} | ||
|
||
/* Dark theme styles */ | ||
@media not print { | ||
body[data-theme="dark"] { | ||
--color-code-background: #272822; | ||
--color-code-foreground: #f8f8f2; | ||
} | ||
|
||
/* For users who prefer dark color scheme */ | ||
@media (prefers-color-scheme: dark) { | ||
body:not([data-theme="light"]) { | ||
--color-code-background: #272822; | ||
--color-code-foreground: #f8f8f2; | ||
} | ||
} | ||
} |
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,27 @@ | ||
// Load shortbread | ||
document.addEventListener('DOMContentLoaded', function() { | ||
|
||
document.body.dataset.theme = localStorage.getItem("theme") || "auto"; | ||
|
||
if (typeof AWSCShortbread !== 'undefined') { | ||
const shortbread = AWSCShortbread({ | ||
// domain: ".amazonaws.com" | ||
domain: "d3o2vvnrhogbwx.cloudfront.net" | ||
}); | ||
|
||
// Check for cookie consent | ||
shortbread.checkForCookieConsent(); | ||
|
||
// Add event listener for 'Cookie preferences' button read from page.html | ||
const cookiePreferencesLink = document.getElementById('cookie-button-link'); | ||
if (cookiePreferencesLink) { | ||
cookiePreferencesLink.addEventListener('click', function(event) { | ||
event.preventDefault(); | ||
shortbread.customizeCookies(); | ||
}); | ||
} | ||
console.log("AWSCShortbread loaded successfully loaded!!!") | ||
} else { | ||
console.error("AWSCShortbread failed to load!!!") | ||
} | ||
}); |
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,31 @@ | ||
{# | ||
This is where user-provided CSS variables get converted into actual values. | ||
#} | ||
{% macro declare_css_variables(user_customisations, pygments_theme) -%} | ||
<link rel="stylesheet" href="{{ pathto('../_static/css/dark_light_mode.css', 1) }}"> | ||
--color-code-background: {{ pygments_theme.background }}; | ||
--color-code-foreground: {{ pygments_theme.foreground }}; | ||
{% if user_customisations -%} | ||
{% for name, value in user_customisations.items() -%} | ||
--{{ name }}: {{ value }}; | ||
{% endfor %} | ||
{%- endif %} | ||
{%- endmacro %} | ||
|
||
|
||
<!-- <link rel="stylesheet" href="{{ pathto('../_static/css/dark_light_mode.css', 1) }}"> --> | ||
<!-- <style> | ||
body { | ||
{{ declare_css_variables(theme_light_css_variables, furo_pygments.light) }} | ||
} | ||
@media not print { | ||
body[data-theme="dark"] { | ||
{{ declare_css_variables(theme_dark_css_variables, furo_pygments.dark) }} | ||
} | ||
@media (prefers-color-scheme: dark) { | ||
body:not([data-theme="light"]) { | ||
{{ declare_css_variables(theme_dark_css_variables, furo_pygments.dark) }} | ||
} | ||
} | ||
} | ||
</style> --> |
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,107 @@ | ||
<!doctype html> | ||
<html class="no-js"{% if language is not none %} lang="{{ language }}"{% endif %} data-content_root="{{ content_root }}"> | ||
<head> | ||
<script src="https://prod.assets.shortbread.aws.dev/shortbread.js"></script> | ||
<link href="https://prod.assets.shortbread.aws.dev/shortbread.css" rel="stylesheet"> | ||
<script type="text/javascript" src="{{ pathto('_static/js/loadShortbread.js',1) }}"></script> | ||
{%- block site_meta -%} | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"/> | ||
<meta name="color-scheme" content="light dark"> | ||
|
||
{%- if metatags %}{{ metatags }}{% endif -%} | ||
|
||
{%- block linktags %} | ||
{%- if hasdoc('about') -%} | ||
<link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" /> | ||
{%- endif -%} | ||
{%- if hasdoc('genindex') -%} | ||
<link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" /> | ||
{%- endif -%} | ||
{%- if hasdoc('search') -%} | ||
<link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" /> | ||
{%- endif -%} | ||
{%- if hasdoc('copyright') -%} | ||
<link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" /> | ||
{%- endif -%} | ||
{%- if next -%} | ||
<link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}" /> | ||
{%- endif -%} | ||
{%- if prev -%} | ||
<link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}" /> | ||
{%- endif -%} | ||
{#- rel="canonical" (set by html_baseurl) -#} | ||
{%- if pageurl %} | ||
<link rel="canonical" href="{{ pageurl|e }}" /> | ||
{%- endif %} | ||
{%- endblock linktags %} | ||
|
||
{# Favicon #} | ||
{%- if favicon_url -%} | ||
<link rel="shortcut icon" href="{{ favicon_url }}"/> | ||
{%- endif -%} | ||
|
||
<!-- Generated with Sphinx {{ sphinx_version }} and Furo {{ furo_version }} --> | ||
|
||
{%- endblock site_meta -%} | ||
|
||
{#- Site title -#} | ||
{%- block htmltitle -%} | ||
{% if not docstitle %} | ||
<title>{{ title|striptags|e }}</title> | ||
{% elif pagename == master_doc %} | ||
<title>{{ docstitle|striptags|e }}</title> | ||
{% else %} | ||
<title>{{ title|striptags|e }} - {{ docstitle|striptags|e }}</title> | ||
{% endif %} | ||
{%- endblock -%} | ||
|
||
{%- block styles -%} | ||
|
||
{# Custom stylesheets #} | ||
{%- block regular_styles -%} | ||
{%- for css in css_files -%} | ||
{% if css|attr("filename") -%} | ||
{{ css_tag(css) }} | ||
{%- else -%} | ||
<link rel="stylesheet" href="{{ pathto(css, 1)|e }}" type="text/css" /> | ||
{%- endif %} | ||
{% endfor -%} | ||
{%- endblock regular_styles -%} | ||
|
||
{#- Theme-related stylesheets -#} | ||
{%- block theme_styles %} | ||
{% include "_head_css_variables.html" with context %} | ||
{%- endblock -%} | ||
|
||
{%- block extra_styles %} | ||
{%- endblock -%} | ||
|
||
{%- endblock styles -%} | ||
|
||
{#- Custom front matter #} | ||
{%- block extrahead -%}{%- endblock -%} | ||
</head> | ||
<body> | ||
{% block body %} | ||
<script> | ||
document.body.dataset.theme = localStorage.getItem("theme") || "auto"; | ||
</script> | ||
{% endblock %} | ||
|
||
{%- block scripts -%} | ||
|
||
{# Custom JS #} | ||
{%- block regular_scripts -%} | ||
{% for path in script_files -%} | ||
{{ js_tag(path) }} | ||
{% endfor -%} | ||
{%- endblock regular_scripts -%} | ||
|
||
{# Theme-related JavaScript code #} | ||
{%- block theme_scripts -%} | ||
{%- endblock -%} | ||
|
||
{%- endblock scripts -%} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{# Adapted from Just the Docs #} | ||
<svg xmlns="http://www.w3.org/2000/svg" class="hidden-svg"> | ||
<symbol id="svg-toc" viewBox="0 0 24 24"> | ||
<title>Contents</title> | ||
<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024"> | ||
<path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM115.4 518.9L271.7 642c5.8 4.6 14.4.5 14.4-6.9V388.9c0-7.4-8.5-11.5-14.4-6.9L115.4 505.1a8.74 8.74 0 0 0 0 13.8z"/> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-menu" viewBox="0 0 24 24"> | ||
<title>Menu</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" | ||
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-menu"> | ||
<line x1="3" y1="12" x2="21" y2="12"></line> | ||
<line x1="3" y1="6" x2="21" y2="6"></line> | ||
<line x1="3" y1="18" x2="21" y2="18"></line> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-arrow-right" viewBox="0 0 24 24"> | ||
<title>Expand</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" | ||
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-chevron-right"> | ||
<polyline points="9 18 15 12 9 6"></polyline> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-sun" viewBox="0 0 24 24"> | ||
<title>Light mode</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" | ||
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> | ||
<circle cx="12" cy="12" r="5"></circle> | ||
<line x1="12" y1="1" x2="12" y2="3"></line> | ||
<line x1="12" y1="21" x2="12" y2="23"></line> | ||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line> | ||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line> | ||
<line x1="1" y1="12" x2="3" y2="12"></line> | ||
<line x1="21" y1="12" x2="23" y2="12"></line> | ||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line> | ||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-moon" viewBox="0 0 24 24"> | ||
<title>Dark mode</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" | ||
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> | ||
<path stroke="none" d="M0 0h24v24H0z" fill="none" /> | ||
<path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" /> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-sun-half" viewBox="0 0 24 24"> | ||
<title>Auto light/dark mode</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" | ||
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-shadow"> | ||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/> | ||
<circle cx="12" cy="12" r="9" /> | ||
<path d="M13 12h5" /> | ||
<path d="M13 15h4" /> | ||
<path d="M13 18h1" /> | ||
<path d="M13 9h4" /> | ||
<path d="M13 6h1" /> | ||
</svg> | ||
</symbol> | ||
</svg> |
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