blob: 7aae59dbbfe2834d97a3e50584047144bfcb155f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
%= include '_history_months', current => "${year}/${month}";
<h1><%= stash('month_name') %> <%= stash('year') %></h1>
% if (stash('statistics')) {
%= include '_history_stats', stats => stash('statistics');
% }
% if (stash('journeys')) {
%= include '_history_trains', date_format => '%d.%m.', journeys => stash('journeys');
% }
|