Implementing call for talks
This commit is contained in:
parent
901945a838
commit
68a589deee
4 changed files with 28 additions and 14 deletions
|
|
@ -10,8 +10,11 @@
|
|||
|
||||
<div>
|
||||
<ul class="nav navbar-nav navbar-center">
|
||||
<li><a href="#" class="navigator-toggle"><i class="fa fa-bars"></i> Browse</a>
|
||||
</li>
|
||||
{% if page.home == true %}
|
||||
<li><a href="#" class="navigator-toggle"><i class="fa fa-bars"></i> Browse</a></li>
|
||||
{% else %}
|
||||
<li><a href="/"><i class="fa fa-angle-left"></i> Back</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -22,7 +25,7 @@
|
|||
<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><a class="top-button" data-scroll-nav="1">TOP</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
@ -37,7 +40,7 @@
|
|||
<div class="col-md-8">
|
||||
<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 %}
|
||||
<a class="button hvr-sweep-to-top topic" data-scroll-nav="{{pos}}">{{topic}}</a> {% endfor %} {% endfor %}
|
||||
<h4><i class="fa fa-sign-in"></i> Participate</h4>
|
||||
<p>Do you like to share your work as visual artist with our audience? Fill the form on our <a href="/call-for-talks/">
|
||||
Call for Talks section.</a>
|
||||
|
|
@ -45,9 +48,9 @@
|
|||
<div class="col-md-4">
|
||||
{% assign post = site.posts | first%}
|
||||
<h4><i class="fa fa-calendar"></i> {{post.date_text}} / #{{post.number}}</h4>
|
||||
<p>Location: <a href="{{location_website}}">{{post.location}}</a></p>
|
||||
<p>Location: <a class="button hvr-sweep-to-top" href="{{location_website}}">{{post.location}}</a></p>
|
||||
{% for topic in post.topics | split:"," %}
|
||||
<a class="topic">{{topic}}</a> {% endfor %} {% for talk in post.talks %}
|
||||
<a class="button hvr-sweep-to-top topic">{{topic}}</a> {% endfor %} {% for talk in post.talks %}
|
||||
<div class="upcoming row">
|
||||
|
||||
<div class="upcoming-media">
|
||||
|
|
@ -59,7 +62,7 @@
|
|||
</div>
|
||||
|
||||
<div class="upcoming-detail">
|
||||
<p><a href="{{talk.artist_website}}">{{talk.artist}}</a> / {{talk.title}}</p>
|
||||
<p><a class="button hvr-sweep-to-top" href="{{talk.artist_website}}">{{talk.artist}}</a> / {{talk.title}}</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue