1
Fork 0

Incorporate information about tours into the 'tournament' layout.

master
vonavi 2014-03-27 17:44:35 +02:00
parent 0d593856df
commit 7c2a7cea4c
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,10 @@
/* Tour info */
.tour-info {
display: inline-block;
min-width: 230px;
table {
width: auto;
margin-left: auto;
margin-right: auto;
}
}

View File

@ -1 +1,2 @@
//= require less/theme.custom
//= require less/pgn4web

View File

@ -12,3 +12,8 @@ layout: default
{% assign table = page.url | remove_first: '/' | append: 'table.html' %}
{% include {{table}} %}
</div>
<div class="col-xs-12">
{% assign tour-info = page.url | remove_first: '/' | append: 'tour-info.html' %}
{% include {{tour-info}} %}
</div>