summaryrefslogtreecommitdiffstats
path: root/templates/part.content.php
blob: 251a0177209f3466f592ea0fcd43b97ff59e7485 (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>