1
0

home.slim 590 B

123456789101112131415161718
  1. h1 SV-Wahlen #{Time.now.year}
  2. form method="post" action=url("/hashid")
  3. .row
  4. .col-xs-6.col-sm-4.col-lg-4
  5. .form-group.form-group-lg
  6. input.form-control type="text" placeholder="Code eingeben" name="hashid" autofocus="true"
  7. .col-xs-6.col-sm-3.col-lg-2
  8. button type="submit" class="btn btn-primary btn-lg" Anmelden
  9. h2 Aktuelle Infos zu den SV-Wahlen
  10. -if infos.empty?
  11. h3 –keine Neuigkeiten–
  12. -infos.reverse.each do |i|
  13. .panel.panel-info
  14. .panel-body
  15. ==markdown(i.text)
  16. .panel-footer
  17. =Time.at(i.timestamp).strftime("%d.%m.%Y – %k:%M Uhr")