robin-drexler/cosch

View on GitHub
lib/template/views/location.html

Summary

Maintainability
Test Coverage
<header>
  <h1>{{ title }}</h1>
</header>

<a href="index.html">Home</a>

<h2>{{location}} - {{day.name}}</h2>

{% for talk in talks%}
<div class="slot-container">
  <span class="slot-time-start">{{ talk.start }}</span> -
  <span class="slot-time-end">{{ talk.end }}</span>

  <div class="talks-container">
    <div class="talk-container">
      <div class="talk-title">{{ talk.title }}</div>
      <div class="talk-footer">
        <div class="talk-speaker">{{ talk.speaker }}</div>
        <div class="talk-location">{{ talk.location }}</div>
        <div style="clear: both;"></div>
      </div>
    </div>
  </div>
</div>
{% endfor %}