summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJimmy Huynh <jimmy.huynh@etu.unistra.fr>2021-01-26 14:38:38 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 23:17:31 +0200
commit1ff8c26ac079c55602217bcbabf344955d6af33a (patch)
treeb7c2b3787a3342bd2c267f25564eb483e8837dd7 /templates
parent5342837d40a68fa1ecc1bad0a8e8224feca3a96d (diff)
(+) Shared href navigation
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/index.php1
-rw-r--r--templates/part.navigation.sharedfeed.php20
2 files changed, 21 insertions, 0 deletions
diff --git a/templates/index.php b/templates/index.php
index 9ad38a0d5..bc4a06586 100644
--- a/templates/index.php
+++ b/templates/index.php
@@ -56,6 +56,7 @@ foreach (Plugin::getScripts() as $appName => $fileName) {
<?php print_unescaped($this->inc('part.navigation.addfolder')) ?>
<?php print_unescaped($this->inc('part.navigation.unreadfeed')) ?>
<?php print_unescaped($this->inc('part.navigation.starredfeed')) ?>
+ <?php print_unescaped($this->inc('part.navigation.sharedfeed')) ?>
<?php print_unescaped($this->inc(
'part.navigation.feed', ['folderId' => 'null']
)) ?>
diff --git a/templates/part.navigation.sharedfeed.php b/templates/part.navigation.sharedfeed.php
new file mode 100644
index 000000000..36be0856a
--- /dev/null
+++ b/templates/part.navigation.sharedfeed.php
@@ -0,0 +1,20 @@
+<li ng-class="{
+ active: Navigation.isShared(),
+ unread: Navigation.isSharedUnread()
+ }"
+ class="with-counter starred-feed">
+
+ <a class="icon-shared" ng-href="#/items/shared/">
+ <?php p($l->t('Shared')) ?>
+ </a>
+
+ <div class="app-navigation-entry-utils">
+ <ul>
+ <li class="app-navigation-entry-utils-counter"
+ ng-show="Navigation.isStarredUnread()"
+ title="{{ Navigation.getStarredCount() }}">
+ {{ Navigation.getStarredCount() | unreadCountFormatter }}
+ </li>
+ </ul>
+ </div>
+</li> \ No newline at end of file