status of 11.01.2015
This commit is contained in:
parent
d1ee848590
commit
0e1c504a6e
19 changed files with 341 additions and 131 deletions
40
index.html
40
index.html
|
|
@ -3,31 +3,22 @@ layout: default
|
|||
---
|
||||
<div class="content container-fluid">
|
||||
|
||||
<!-- <div class="event-selector col-md-2 col-md-offset-1">
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
<li><a href="#">{{post.number}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="event-displayer col-md-7">-->
|
||||
|
||||
{% for post in paginator.posts %}
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="event-date col-md-2 col-md-offset-1">
|
||||
|
||||
<a href={{post.url}}>
|
||||
<a class="button hvr-sweep-to-top" href={{post.url}}>
|
||||
<h3>#{{post.number}}</h3>
|
||||
<h4>{{post.date_text}}</h4>
|
||||
{% if post.location %}
|
||||
<a class="button hvr-sweep-to-top" href={{post.location_website}} target="_blank">{{post.location}}</a>
|
||||
{% endif %}
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- <div class="row event event-{{post.number}}"> -->
|
||||
|
||||
<div class="event event-{{post.number}} dark_bg col-md-7">
|
||||
|
||||
{% capture talks_number %}{{ post.talks | size }}{% endcapture %}
|
||||
|
|
@ -46,13 +37,18 @@ layout: default
|
|||
</div>
|
||||
|
||||
<div class="talk_detail">
|
||||
<h4>{{talk.artist}}: {{talk.title}}</h4>
|
||||
<h4>{{talk.artist}} / {{talk.title}}</h4>
|
||||
<p>{{talk.description}}</p>
|
||||
{% if talk.artist_website %}
|
||||
<a class="button hvr-sweep-to-top" href={{talk.artist_website}} target="_blank">{{talk.artist_website}}</a>
|
||||
{% endif %}
|
||||
{% if talk.video_artist_url %}
|
||||
<br>
|
||||
<a class="button hvr-sweep-to-top" href={{talk.video_artist_url}} target="_blank">Artist's Video</a>
|
||||
{% endif %}
|
||||
{% if talk.video_url %}
|
||||
<a href={{talk.video_url}}>Video</a>
|
||||
<br>
|
||||
<a class="button hvr-sweep-to-top" href={{talk.video_url}} target="_blank">Talk's Video</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
|
|
@ -68,17 +64,13 @@ layout: default
|
|||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-2 col-md-offset-3">
|
||||
{% if paginator.previous_page %}
|
||||
<a href="{{ paginator.previous_page_path }}" class="previous">Previous</a>
|
||||
{% else %}
|
||||
<span class="previous">Previous</span>
|
||||
<div class="nav_bottom dark_bg col-md-3 col-md-offset-3">
|
||||
{% if paginator.previous_page_path %}
|
||||
<a href="{{ paginator.previous_page_path }}" class="previous">Previous </a>
|
||||
{% endif %}
|
||||
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
||||
<span class="page_number">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
||||
{% if paginator.next_page %}
|
||||
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
|
||||
{% else %}
|
||||
<span class="next ">Next</span>
|
||||
<a href="{{ paginator.next_page_path }}" class="next"> Next</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue