summaryrefslogtreecommitdiffstats
path: root/templates/main.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-08-29 16:55:32 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-08-29 16:55:32 +0200
commita17700800cf475587ab3d0eb6acee91a56b5b40a (patch)
treeb77e8b509dc3118fa1c01034f491188cdca4e272 /templates/main.php
parent08ddaba792128f801f8dcab1f52e435ef7984bf1 (diff)
add folder drop down
Diffstat (limited to 'templates/main.php')
-rw-r--r--templates/main.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/templates/main.php b/templates/main.php
index e879c8a18..19e98bf56 100644
--- a/templates/main.php
+++ b/templates/main.php
@@ -25,7 +25,8 @@
<news-title-unread-count unread-count="{{ Navigation.getUnreadCount() }}"></news-title-unread-count>
<ul class="with-icon" data-folder-id="0" news-droppable>
- <?php print_unescaped($this->inc('part.addnew')) ?>
+ <?php print_unescaped($this->inc('part.addfeed')) ?>
+ <?php print_unescaped($this->inc('part.addfolder')) ?>
<?php print_unescaped($this->inc('part.feed.unread')) ?>
<?php print_unescaped($this->inc('part.feed.starred')) ?>
<?php print_unescaped($this->inc('part.listfeed', ['folderId' => '0'])) ?>
@@ -42,21 +43,20 @@
<!-- content -->
<script type="text/ng-template" id="content.html"><?php print_unescaped($this->inc('part.content')) ?></script>
- <div id="app-content"></div>
- <div
- id="content-container"
- ng-class="{
- 'icon-loading': App.loading.isLoading('content'),
- 'autopaging': App.loading.isLoading('autopaging')
- }"
- ng-hide="App.loading.isLoading('global')"
- ng-view
- tabindex="-1"
- news-scroll
- news-scroll-enabled-auto-page="Content.autoPagingEnabled()"
- news-scroll-enabled-mark-read="Content.markReadEnabled()"
- news-scroll-auto-page="Content.autoPage()"
- news-scroll-mark-read="Content.scrollRead(itemIds)">
+ <div id="app-content">
+ <div id="app-content-wrapper"
+ ng-class="{
+ 'icon-loading': App.loading.isLoading('content'),
+ 'autopaging': App.loading.isLoading('autopaging')
+ }"
+ ng-hide="App.loading.isLoading('global')"
+ ng-view
+ tabindex="-1"
+ news-scroll
+ news-scroll-enabled-auto-page="Content.autoPagingEnabled()"
+ news-scroll-enabled-mark-read="Content.markReadEnabled()"
+ news-scroll-auto-page="Content.autoPage()"
+ news-scroll-mark-read="Content.scrollRead(itemIds)">
</div>
</div>