Select Git revision
macros.html
Forked from
Video AG Infrastruktur / website
Source project has a limited visibility.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
macros.html 861 B
{% macro preview(lecture) %}
<li class="list-group-item">
<div class="row">
<a href="?view=player&lectureid={{ lecture['id'] }}#content" title="{{ lecture['coursetitle'] }}">
<img class="col-xs-4" src="https://videoag.fsmpi.rwth-aachen.de/{{ lecture['titlefile'] }}" alt="Vorschaubild">
<div class="col-xs-4">
<span style="color: #000;"><strong>{{ lecture['short'] }}</strong></span><br>
<span style="color: #000;">{{ lecture['time'] }}</span>
{% if lecture['speaker'] %}
<div class="small" style="color: #000;">Gehalten von {{ lecture['speaker'] }} </div>
{% endif %}
</div>
<div class="col-xs-4" style="color: #000;">
<div class="comment" style="color: #000;">{{ lecture['comment'] }}</div>
<p style="font-style: italic; color: #777;">{{ lecture['title'] }}</p>
</div>
</a>
</div>
</li>
{% endmacro %}: