Skip to content
Merged
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
9 changes: 8 additions & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<meta name="theme-color" content="#101217">
{% seo %}
{% feed_meta %}
<link rel="icon" type="image/svg+xml" href="{{ '/assets/mark/psi.svg' | relative_url }}">
<link rel="apple-touch-icon" href="{{ '/assets/mark/psi-180.png' | relative_url }}">
<link rel="stylesheet" href="{{ '/assets/notebook.css' | relative_url }}">
{% if page.profiles %}<script defer src="{{ '/assets/profile-comparison.js' | relative_url }}"></script>{% endif %}
{% if page.mesh_band %}<script defer src="{{ '/assets/mesh-band.js' | relative_url }}"></script>{% endif %}
Expand All @@ -17,7 +19,12 @@
<body>
<a class="skip" href="#content">Skip to content</a>
<header class="site-header wrap">
<a class="wordmark" href="{{ '/' | relative_url }}"><span class="mark" aria-hidden="true">∿</span> {{ site.title }}</a>
<a class="wordmark" href="{{ '/' | relative_url }}"><svg class="mark" viewBox="0 0 100 100" aria-hidden="true">
<path d="M 50 26.06 L 50 69.74 Z" fill="none" stroke="#edf0f5" stroke-width="7.14" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="4"/>
<path d="M 50 38.24 L 20.6 18.5 L 50 44.12 Z" fill="none" stroke="#edf0f5" stroke-width="7.14" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="4"/>
<path d="M 50 38.24 L 79.4 18.5 L 50 44.12 Z" fill="none" stroke="#edf0f5" stroke-width="7.14" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="4"/>
<path d="M 50 69.74 L 50 84.02 Z" fill="none" stroke="#91dbba" stroke-width="7.14" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="4"/>
</svg> {{ site.title }}</a>
<nav aria-label="Main navigation">
{% for item in site.navigation %}<a href="{% if item.external %}{{ item.url }}{% else %}{{ item.url | relative_url }}{% endif %}" {% if page.url == item.url %}aria-current="page"{% endif %}>{{ item.title }}</a>{% endfor %}
</nav>
Expand Down
Binary file added docs/assets/mark/psi-180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions docs/assets/mark/psi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/assets/notebook.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ a:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 2px
.wrap { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 23px; border-bottom: 1px solid var(--rule); }
.wordmark { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 17px; font-weight: 650; letter-spacing: -.4px; text-decoration: none; }
.mark { display: inline-grid; place-items: center; width: 27px; height: 27px; border: 1px solid #657dab; border-radius: 7px; color: var(--accent); font-size: 23px; line-height: 1; }
.mark { display: inline-grid; place-items: center; width: 27px; height: 27px; border: 1px solid #657dab; border-radius: 7px; color: var(--accent); }
nav { display: flex; gap: 22px; flex-wrap: wrap; font-size: 12px; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover, nav [aria-current] { color: var(--ink); }
Expand Down
Loading