103 lines
4.2 KiB
Plaintext
103 lines
4.2 KiB
Plaintext
<button id="sidebar-menu-toggle" class="greedy-nav__toggle" type="button">
|
|
<div class="navicon"></div>
|
|
</button>
|
|
|
|
<nav id="sidebar-nav" class="nav__list">
|
|
{% if page.sidebar.title %}<h3 class="nav__title" style="padding-left: 0;">{{ page.sidebar.title }}</h3>{% endif %}
|
|
<input id="ac-toc" name="accordion-toc" type="checkbox" />
|
|
|
|
<ul class="nav__items">
|
|
|
|
{% for navname in include.nav %}
|
|
{% assign navigation = site.data.navigation[navname] %}
|
|
{% for nav in navigation %}
|
|
<li>
|
|
|
|
{% if nav.title == 'Blog' %}
|
|
{% if nav.children.size > 3 %}
|
|
{% assign showMore = 'true' %}
|
|
{% endif %}
|
|
{% else %}
|
|
{% assign showMore = 'false' %}
|
|
{% endif %}
|
|
|
|
{% if nav.url %}
|
|
<a href="{{ nav.url | relative_url }}"><span class="nav__sub-title">{{ nav.title }}</span></a>
|
|
{% else %}
|
|
<span class="nav__sub-title">{{ nav.title }}</span>
|
|
{% endif %}
|
|
|
|
{% if nav.children != null %}
|
|
<ul>
|
|
{% for child in nav.children %}
|
|
|
|
{% if showMore == 'true' %}
|
|
{% if forloop.index <= 3 %}
|
|
<li><a href="{{ child.url | relative_url }}"{% if child.url == page.url %} class="active"{% endif %}>{{ child.title }}</a></li>
|
|
{% else %}
|
|
<li class="hidden hidden_blog_item"><a href="{{ child.url | relative_url }}"{% if child.url == page.url %} class="active"{% endif %}>{{ child.title }}</a></li>
|
|
{% endif %}
|
|
|
|
{% if forloop.last %}
|
|
<li id="blog_more_link"><a href='#'>Show More</a></li>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if showMore == 'false' %}
|
|
<li><a href="{{ child.url | relative_url }}"{% if child.url == page.url %} class="active"{% endif %}>{{ child.title }}</a></li>
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<div style="margin-top: 16px;" itemscope itemtype="https://schema.org/Person" class="h-card">
|
|
|
|
<div class="author__urls-wrapper">
|
|
<ul class="nav__items" style="font-size: 20px">
|
|
<li>
|
|
<a href="https://www.informatik.uni-wuerzburg.de/datascience/" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
<img style="margin-left: 2px; width: 16px; height: 16px;" src="{{'/assets/img/lsx-favicon.png' | relative_url }}"><span class="label"> AI Team</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="https://www.ukw.de/behandlungszentren/dzhi/startseite/" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
<img style="margin-left: 2px; width: 16px; height: 16px;" src="{{'/assets/img/ukw-favicon.png' | relative_url }}"><span class="label"> DZHI</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="https://www.linkedin.com/search/results/all/?fetchDeterministicClustersOnly=false&heroEntityKey=urn%3Ali%3Agroup%3A13048006&keywords=magnet4cardiac7t&origin=RICH_QUERY_SUGGESTION&position=0&searchId=85b2101d-eeee-431d-8ff0-c1e3a4446356&sid=_DW&spellCorrectionEnabled=false" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
<img style="margin-left: 2px; width: 16px; height: 16px;" src="{{'/assets/img/linkedin.png' | relative_url }}"><span class="label"> LinkedIn</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="https://github.com/MAGNET4Cardiac7T" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
<img style="margin-left: 2px; width: 16px; height: 16px;" src="{{'/assets/img/github.png' | relative_url }}"><span class="label"> Github</span>
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="mailto: magnet4cardiac7t@uni-wuerzburg.de" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
<img style="margin-left: 0px; width: 18px; height: 18px;" src="{{'/assets/img/mail.png' | relative_url }}"><span class="label"> Mail</span>
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</nav>
|
|
|