1<?php
2/**
3 * @copyright Copyright (c) 2016, ownCloud, Inc.
4 *
5 * @author Jan-Christoph Borchardt <hey@jancborchardt.net>
6 * @author Joas Schilling <coding@schilljs.com>
7 * @author Thomas Müller <thomas.mueller@tmit.eu>
8 *
9 * @license GNU AGPL version 3 or any later version
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Affero General Public License as
13 * published by the Free Software Foundation, either version 3 of the
14 * License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 * GNU Affero General Public License for more details.
20 *
21 * You should have received a copy of the GNU Affero General Public License
22 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 *
24 */
25script('activity', [
26	'richObjectStringParser',
27	'templates',
28	'script',
29	'feedSettings',
30]);
31style('activity', 'style');
32?>
33
34<?php $_['appNavigation']->printPage(); ?>
35
36<div id="app-content">
37	<div id="emptycontent" class="hidden">
38		<div class="icon-activity"></div>
39		<h2><?php p($l->t('No activity yet')); ?></h2>
40		<p><?php p($l->t('This stream will show events like additions, changes & shares')); ?></p>
41	</div>
42
43	<div id="container" data-activity-filter="<?php p($_['filter']) ?>" data-avatars-enabled="<?php p($_['avatars']) ?>">
44	</div>
45
46	<div id="loading_activities" class="icon-loading"></div>
47
48	<div id="no_more_activities" class="hidden">
49		<?php p($l->t('No more events to load')) ?>
50	</div>
51</div>
52