new_nav_header.mustache 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {{!
  2. # Copyright (C) 2015 - present Instructure, Inc.
  3. #
  4. # This file is part of Canvas.
  5. #
  6. # Canvas is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Affero General Public License as published by the Free
  8. # Software Foundation, version 3 of the License.
  9. #
  10. # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
  11. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License along
  16. # with this program. If not, see <http://www.gnu.org/licenses/>.
  17. }}
  18. <header id="header" class="ic-app-header no-print">
  19. <div role="region" class="ic-app-header__main-navigation" aria-label="{{#t}}Global Navigation{{/t}}">
  20. <ul id="menu" class="ic-app-header__menu-list">
  21. {{#current_user}}
  22. <li class="menu-item ic-app-header__menu-list-item">
  23. <a id="global_nav_profile_link" href="/profile" class="ic-app-header__menu-list-link">
  24. <div class="menu-item-icon-container" aria-hidden="true">
  25. <div class="ic-avatar">
  26. <img src="{{avatar}}" alt="{{short_name}}" />
  27. </div>
  28. </div>
  29. <div class="menu-item__text">
  30. {{#t}}Account{{/t}}
  31. </div>
  32. </a>
  33. </li>
  34. {{/current_user}}
  35. {{^current_user}}
  36. <li class="menu-item ic-app-header__menu-list-item">
  37. <a id="global_nav_login_link" href="/login" class="ic-app-header__menu-list-link">
  38. <div class="menu-item-icon-container" aria-hidden="true">
  39. {{> views/shared/svg/svg_login_new_styles.svg}}
  40. </div>
  41. <div class="menu-item__text">
  42. {{#t}}Login{{/t}}
  43. </div>
  44. </a>
  45. </li>
  46. {{/current_user}}
  47. <li class="ic-app-header__menu-list-item">
  48. <a id="global_nav_dashboard_link" href="/dashboard" class="ic-app-header__menu-list-link">
  49. <div class="menu-item-icon-container" aria-hidden="true">
  50. {{#svg_icon}}:dashboard{{/svg_icon}}
  51. </div>
  52. <div class="menu-item__text">{{#t}}Dashboard{{/t}}</div>
  53. </a>
  54. </li>
  55. <li class="menu-item ic-app-header__menu-list-item">
  56. <a id="global_nav_conversations_link" href="/conversations" class="ic-app-header__menu-list-link">
  57. <div class="menu-item-icon-container" aria-hidden="true">
  58. {{#svg_icon}}:inbox{{/svg_icon}}
  59. <span class="menu-item__badge" style="display: none">0</span>
  60. </div>
  61. <div class="menu-item__text">
  62. {{#t}}Inbox{{/t}}
  63. </div>
  64. </a>
  65. </li>
  66. </ul>
  67. </div>
  68. <div id="global_nav_tray_container"></div>
  69. </header>