notifications.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php include ('header.php'); ?>
  2. <main id="main">
  3. <div class="article_wrap">
  4. <aside class="left_column">
  5. </aside>
  6. <article class="center_column">
  7. <header class="timeline_header">
  8. <ul class="header_items">
  9. <li class="item toots view">
  10. <a href="#">
  11. <?=_('All')?>
  12. </a>
  13. </li>
  14. </ul>
  15. </header>
  16. <div id="js-stream_update">
  17. <button>
  18. <?=_('View ')?><span></span><?=_(' new notitification')?>
  19. </button>
  20. </div>
  21. <ul id="js-timeline" class="timeline">
  22. </ul>
  23. <footer id="js-timeline_footer" class="timeline_footer">
  24. <i class="fa fa-spin fa-circle-o-notch" aria-hidden="true"></i>
  25. </footer>
  26. </article>
  27. <aside class="right_column">
  28. <section class="side_widgets_wrap">
  29. <?php include dirname(__FILE__).('/widgets/side_who_to_follow.php'); ?>
  30. </section>
  31. <?php include dirname(__FILE__).('/widgets/side_footer.php'); ?>
  32. </aside>
  33. </div>
  34. </main>
  35. <script>
  36. current_file = location.pathname;
  37. $("#notifications_nav").addClass('view');
  38. localStorage.setItem("notification_count", 0);
  39. setNotifications();
  40. $('title').text('Halcyon / Notifications')
  41. </script>
  42. <?php include ('footer.php'); ?>