scopesessions.org/_includes/header.html

63 lines
1.9 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
2015-02-13 18:11:24 +01:00
<div class="container-fluid">
2014-11-30 23:17:02 +01:00
2015-02-13 18:11:24 +01:00
<div class="navbar-header">
<a class="navbar-brand" href="/">
<img alt="Logo" src="/assets/scope_logo.png">
</a>
</div>
2014-11-30 23:17:02 +01:00
2015-02-13 18:11:24 +01:00
<!-- Collect the nav links, forms, and other content for toggling -->
<div>
<ul class="nav navbar-nav navbar-right">
<li><a href="#" class="navigator-toggle"><i class="fa fa-caret-square-o-down"></i> Upcoming session & more</a>
</li>
{% for page in site.pages %} {% if page.title %}
<li><a class="header-btn" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
</li>
{% endif %} {% endfor %}
<li><a class="top-button" data-scroll-nav="0">TOP</a>
</li>
</ul>
2014-11-30 23:17:02 +01:00
</div>
2015-02-13 18:11:24 +01:00
<!-- /.navbar-collapse -->
</div>
2014-11-30 23:17:02 +01:00
</nav>
2015-02-03 04:36:49 +01:00
<div class="container-fluid navigator">
<div class="row">
2015-02-13 18:09:23 +01:00
<div class="col-md-7">
2015-02-13 18:11:24 +01:00
<h4><i class="fa fa-search"></i> Browse by topic</h4>
{% for post in site.posts %} {% assign pos = 39 | minus: post.number %} {% for topic in post.topics | split:"," %}
<a class="topic" data-scroll-nav="{{pos}}">{{topic}}</a> {% endfor %} {% endfor %}
2015-02-03 04:36:49 +01:00
</div>
<div class="col-md-4">
2015-02-13 18:09:23 +01:00
<h4><i class="fa fa-calendar"></i> Upcoming session</h4>
2015-02-13 18:11:24 +01:00
{% assign post = site.posts | first%}
<!-- <div class="container-fluid navigator"> -->
<h3>#{{post.number}}{{post.date_text}} ({{post.location}})</h3>
{% for topic in post.topics | split:"," %}
<a class="topic">{{topic}}</a> {% endfor %} {% for talk in post.talks %}
<div class="upcoming row">
<div class="upcoming-media">
{% if {{talk.media_artist_url}} %}
<img src={{talk.media_artist_url}}></img>
{% else %}
<img src="/assets/no_artist-media.png"></img>
{% endif %}
</div>
2015-02-13 18:09:23 +01:00
2015-02-13 18:11:24 +01:00
<div class="upcoming-detail">
<h4>{{talk.artist}} / {{talk.title}}</h4>
</div>
2015-02-13 18:09:23 +01:00
2015-02-13 18:11:24 +01:00
</div>
{% endfor %}
2015-02-03 04:36:49 +01:00
</div>
</div>
</div>