Files
racalmas/website/agenda/templates/default/event_dashboard_details.html
Milan ebd521452a template: custom themes for agenda
For agenda a custom theme can be configured in locations/theme.
Templates are read from the subdirectory "templates/<theme>/".  The
default theme is "default".  All Templates are moved to
templates/default.
2023-02-25 11:32:51 +01:00

46 lines
1.6 KiB
HTML

Content-type:text/html; charset=utf-8;
Access-Control-Allow-Origin: *
<!DOCTYPE html>
<html>
<body>
<TMPL_LOOP events>
<div class="event-base">
<div class="vevent">
<div class="date<TMPL_IF is_running> running</TMPL_IF>">
<h1 class="summary title">
<TMPL_IF series_name><TMPL_VAR series_name></TMPL_IF>
<TMPL_VAR full_title_no_series>
</h1>
</div>
<div class="content description" >
<TMPL_IF no_image_in_text>
<TMPL_IF .hide_event_images>
<figure>
<TMPL_IF series_thumb_url>
<img alt="<TMPL_VAR series_name>" src="<TMPL_VAR series_image_url>">
<TMPL_IF series_image_label><figcaption>Bild: <TMPL_VAR series_image_label></figcaption></TMPL_IF>
</TMPL_IF>
</figure>
<TMPL_ELSE>
<figure>
<TMPL_IF thumb_url>
<img alt="<TMPL_VAR series_name>" src="<TMPL_VAR image_url>">
<TMPL_IF image_label><figcaption>Bild: <TMPL_VAR image_label></figcaption></TMPL_IF>
</TMPL_IF>
</figure>
</TMPL_IF>
</TMPL_IF>
<TMPL_VAR topic escape=none><TMPL_VAR content escape=none>
<TMPL_IF recurrence_date><a href="<TMPL_VAR recurrence>.html">
Wiederholung vom <TMPL_VAR recurrence_weekday_name>, <TMPL_VAR recurrence_date_name>, <TMPL_VAR recurrence_time_name> Uhr</a>
</TMPL_IF>
</div>
</div>
</div>
</TMPL_LOOP>
</body>
</html>