mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
14 lines
697 B
PHP
14 lines
697 B
PHP
<section id="main">
|
|
<?= $this->projectHeader->render($project, 'AnalyticController', $this->app->getRouterAction()) ?>
|
|
|
|
<?php if ($project['is_public']): ?>
|
|
<div class="menu-inline pull-right">
|
|
<ul>
|
|
<li><i class="fa fa-rss-square fa-fw"></i><?= $this->url->link(t('RSS feed'), 'FeedController', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
|
|
<li><i class="fa fa-calendar fa-fw"></i><?= $this->url->link(t('iCal feed'), 'ICalendarController', 'project', array('token' => $project['token'])) ?></li>
|
|
</ul>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<?= $this->render('event/events', array('events' => $events)) ?>
|
|
</section>
|