123456789101112131415161718 |
- h1 SV-Wahlen 2016
- form method="post" action="/hashid"
- .row
- .col-xs-6.col-sm-4.col-lg-4
- .form-group.form-group-lg
- input.form-control type="text" placeholder="Code eingeben" name="hashid" autofocus="true"
- .col-xs-6.col-sm-3.col-lg-2
- button type="submit" class="btn btn-primary btn-lg" Anmelden
- h2 Aktuelle Infos zu den SV-Wahlen
- -if infos.empty?
- h3 –keine Neuigkeiten–
- -infos.reverse.each do |i|
- .panel.panel-info
- .panel-body
- ==markdown(i.text)
- .panel-footer
- =Time.at(i.timestamp).strftime("%d.%m.%Y – %k:%M Uhr")
|