scopesessions.org/_includes/header.html

56 lines
1.8 KiB
HTML
Raw Normal View History

2015-01-09 18:01:24 +01:00
<nav class="navbar navbar-default navbar-fixed-top">
2014-11-30 23:17:02 +01:00
<div class="container-fluid">
2014-11-30 23:17:02 +01:00
<div class="navbar-header">
<a class="navbar-brand" href="/">
<img alt="Logo" src="/assets/scope_logo.png">
2014-11-30 23:17:02 +01:00
</a>
</div>
2015-01-09 18:01:24 +01:00
<!-- Collect the nav links, forms, and other content for toggling -->
2015-01-11 10:18:24 +01:00
<div class="">
2015-01-09 18:01:24 +01:00
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
2015-02-03 04:36:49 +01:00
<a href="#" class="navigator-toggle button hvr-sweep-to-top">More</a>
<!-- <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Jump to session<span class="caret"></span></a> -->
2015-01-09 18:01:24 +01:00
<ul class="dropdown-menu" role="menu">
{% for post in site.posts %}
2015-02-03 04:36:49 +01:00
{% assign pos = 39 | minus: post.number %}
<li><a data-scroll-nav="{{pos}}">#{{post.number}}: {{post.topics}}</a></li>
2015-01-09 18:01:24 +01:00
{% endfor %}
</ul>
</li>
{% for page in site.pages %}
{% if page.title %}
2015-01-09 18:01:24 +01:00
<li><a class="button hvr-sweep-to-top" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
{% endif %}
2015-01-09 18:01:24 +01:00
{% endfor %}
2015-02-03 04:36:49 +01:00
<li><a href="#" data-scroll-nav="0" class="button hvr-sweep-to-top">TOP</a></li>
2015-01-09 18:01:24 +01:00
</ul>
</div><!-- /.navbar-collapse -->
2014-11-30 23:17:02 +01:00
</div>
</nav>
2015-02-03 04:36:49 +01:00
<div class="container-fluid navigator">
<div class="row">
<div class="col-md-6 col-md-offset-1">
<h4>Browse by content</h4>
{% for post in site.posts %}
{% assign pos = 39 | minus: post.number %}
{% for topic in post.topics | split:"," %}
<a class="button hvr-sweep-to-top" data-scroll-nav="{{pos}}">{{topic}}</a>
{% endfor %}
{% endfor %}
</div>
<div class="col-md-4">
<h4>Upcoming session</h4>
</div>
</div>
</div>