summaryrefslogtreecommitdiffstats
path: root/templates/part.content.php
blob: b0e39f8d9c70ac13485899f62e73db107c4cdc93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div id="first-run" ng-if="App.isFirstRun()">
    <h1><?php p($l->t('Welcome to the ownCloud News app!')) ?></h1>
</div>

<div ng-if="!App.isFirstRun()">
	<ul ng-if="Content.isCompactView()">
        <?php print_unescaped($this->inc('part.content.compact')); ?>
    </ul>

    <ul ng-if="!Content.isCompactView()">
        <?php print_unescaped($this->inc('part.content.expand')); ?>
    </ul>
</div>