-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
118 additions
and
223 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
Submodule Display_Tools
updated
3 files
+1 −0 | docs/experiment-conductor.md | |
+3 −2 | docs/experiment-conductor_getting-started.md | |
+3 −1 | docs/experiment-conductor_run-protocol_tutorial.md |
Submodule Hardware
updated
from 0fcbd5 to 0f9f11
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,38 @@ | ||
{%- comment -%} | ||
Include as: {%- include components/sidebar.html -%} | ||
Depends on: page(?), site. | ||
Results in: HTML for the side bar. | ||
Includes: | ||
title.html, components/site_nav.html, nav_footer_custom.html | ||
Overwrites: | ||
nav_footer_custom. | ||
Should not be cached, because nav_footer_custom.html might depend on page. | ||
{%- endcomment -%} | ||
|
||
<div class="side-bar"> | ||
<div class="site-header" role="banner"> | ||
<a href="{{ '/' | relative_url }}" class="site-title lh-tight">{% include title.html %}</a> | ||
<button id="menu-button" class="site-button btn-reset" aria-label="Toggle menu" aria-pressed="false"> | ||
<svg viewBox="0 0 24 24" class="icon" aria-hidden="true"><use xlink:href="#svg-menu"></use></svg> | ||
</button> | ||
</div> | ||
|
||
{% include_cached components/site_nav.html %} | ||
|
||
{% capture nav_footer_custom %} | ||
{%- include nav_footer_custom.html -%} | ||
{% endcapture %} | ||
{% if nav_footer_custom != "" %} | ||
{{ nav_footer_custom }} | ||
{% else %} | ||
<footer class="site-footer"> | ||
{% assign linkurl = site.github.repository_url %} | ||
{% for repo in site.data.repos %} | ||
{% if page.path contains repo.path %} | ||
{% assign linkurl = repo.url %} | ||
{% endif %} | ||
{% endfor %} | ||
This page is generated from <a href="{{linkurl}}">{{linkurl}}</a> | ||
</footer> | ||
{% endif %} | ||
</div> |
Oops, something went wrong.