Weekday shown for events / Responsive Mainpage

This commit is contained in:
Martin Bauer
2013-11-09 14:54:25 +01:00
parent a6a1620a53
commit 81120ab385
8 changed files with 95 additions and 180 deletions

View File

@@ -176,7 +176,9 @@
<div id="route_info_box" class="span5 box_wrapp">
<div class="box_cont">
<div class="head">
<h6>Nächstes Konzert:</h6>
<h4>Nächstes Konzert</h4>
<!--
</div>
Nächstes Konzert ist in <br> <em>{{nextConcert.location}}</em> <br> am {{nextConcert.date | date:"SHORT_DATE_FORMAT" }} um {{nextConcert.time | time:"H:i" }} Uhr <br/>
{% if nextConcert.meeting_time %} Treffpunkt ist um {{ nextConcert.meeting_time | time:"H:i" }} Uhr <br/> {% endif %}
@@ -185,6 +187,18 @@
<tr> <td> Fahrzeit:</td> <td> <span id="route_duration"></span> </td> </tr>
<tr> <td> Strecke: </td> <td> <span id="route_distance"></span> </td> </tr>
</table>
-->
<table class="table table-striped table-condensed">
<tr><td>Ort: </td> <td> {{nextConcert.location}} </td> </tr>
<tr><td>Datum: </td> <td> {{nextConcert.date | date:"D, d.m.y" }} </td> </tr>
<tr><td>Uhrzeit: </td> <td> {{nextConcert.time | time:"H:i" }} Uhr </td> </tr>
{% if nextConcert.meeting_time %} <tr><td>Treffen um: </td> <td> {{ nextConcert.meeting_time | time:"H:i" }} Uhr </td> </tr> {% endif %}
<tr> <td> Fahrzeit:</td> <td> <span id="route_duration"></span> </td> </tr>
<tr> <td> Strecke: </td> <td> <span id="route_distance"></span> </td> </tr>
</table>
<a class="btn" >Schliessen</a>
</div>
</div>

View File

@@ -38,8 +38,8 @@
<div class="span6 text">
<h4>Der nächste Termin:</h4>
<p>
{{countdown.event.title}} ist am {{countdown.event.date | date:"SHORT_DATE_FORMAT" }}
um {{countdown.event.displaytime | time:"H:i" }}
{{countdown.event.title}} am {{countdown.event.date | date:"D, d.m.y" }}
um {{countdown.event.displaytime | time:"H:i" }} Uhr
in <em>{{countdown.event.location}} </em>
<br/>
@@ -55,21 +55,21 @@
</p>
</div>
<div class="span6 count" id="clock">
<div class="box last">
<div class="circle"> <span id="seconds"></span> </div>
<p>Sekunden</p>
</div>
<div class="box">
<div class="circle"> <span id="minutes"></span> </div>
<p>Minuten</p>
<div class="circle"> <span id="days"></span> </div>
<p>Tage</p>
</div>
<div class="box">
<div class="circle"> <span id="hours"></span> </div>
<p>Stunden</p>
</div>
<div class="box">
<div class="circle"> <span id="days"></span> </div>
<p>Tage</p>
<div class="circle"> <span id="minutes"></span> </div>
<p>Minuten</p>
</div>
<div class="box last">
<div class="circle"> <span id="seconds"></span> </div>
<p>Sekunden</p>
</div>
</div>
</div>

View File

@@ -52,6 +52,20 @@
border-radius: 8px;
}
@media (max-width: 979px) {
.slide .info a {
font-size: 22px;
}
.slide .info .subtitle {
font-size: 16px;
}
.slide .info .subtitlebg {
font-size: 16px;
}
}
</style>
{% endaddtoblock %}