_headNavIcons.inc.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * Insipid
  4. * Personal web-bookmark-system
  5. *
  6. * Copyright 2016-2022 Johannes Keßler
  7. *
  8. * Development starting from 2011: Johannes Keßler
  9. * https://www.bananas-playground.net/projekt/insipid/
  10. *
  11. * creator:
  12. * Luke Reeves <luke@neuro-tech.net>
  13. *
  14. * This program is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation, either version 3 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program. If not, see http://www.gnu.org/licenses/gpl-3.0.
  26. *
  27. */
  28. ?>
  29. <div class="column">
  30. <p class="has-text-right">
  31. <a href="index.php?p=overview&m=tag" title="<?php echo $T->t('view.nav.all.tags'); ?>" class="button">
  32. <span class="icon"><i class="ion-md-pricetags"></i></span>
  33. </a>
  34. <a href="index.php?p=overview&m=category" title="<?php echo $T->t('view.nav.all.categories'); ?>" class="button">
  35. <span class="icon"><i class="ion-md-filing"></i></span>
  36. </a>
  37. <a href="index.php" title="<?php echo $T->t('view.nav.back.home'); ?>" class="button">
  38. <span class="icon"><i class="ion-md-home"></i></span>
  39. </a>
  40. <a href="index.php?p=random" title="<?php echo $T->t('view.nav.random'); ?>" class="button">
  41. <span class="icon"><i class="ion-md-shuffle"></i><span>
  42. </a>
  43. </p>
  44. </div>