dashboard_card.mustache 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {{!
  2. * Copyright (C) 2017 - 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. <div
  19. class="ic-DashboardCard"
  20. aria-label="{{originalName}}"
  21. >
  22. <div class="ic-DashboardCard__header">
  23. {{#image}}
  24. <div
  25. class="ic-DashboardCard__header_image"
  26. style="background-image: url({{url}})"
  27. >
  28. <div
  29. class="ic-DashboardCard__header_hero"
  30. style="background-color: {{background}}"
  31. aria-hidden="true"></div>
  32. </div>
  33. );
  34. }
  35. {{/image}}
  36. {{^image}}
  37. <div
  38. class="ic-DashboardCard__header_hero"
  39. style="background-color: {{background}}"
  40. aria-hidden="true"></div>
  41. {{/image}}
  42. <a href="{{href}}" class="ic-DashboardCard__link">
  43. <div class="ic-DashboardCard__header_content">
  44. <h2 class="ic-DashboardCard__header-title ellipsis" title="{{originalName}}">
  45. <span style="color: {{backgroundColor}}">
  46. {{nickname}}
  47. </span>
  48. </h2>
  49. <div
  50. class="ic-DashboardCard__header-subtitle ellipsis"
  51. title="{{courseCode}}"
  52. >
  53. {{courseCode}}
  54. </div>
  55. <div
  56. class="ic-DashboardCard__header-term ellipsis"
  57. title="{{term}}"
  58. >
  59. {{term}}
  60. </div>
  61. </div>
  62. </a>
  63. </div>
  64. <nav
  65. class="ic-DashboardCard__action-container"
  66. >
  67. {{#links}}
  68. <a href="{{path}}" class="ic-DashboardCard__action {{class}}">
  69. <div class="ic-DashboardCard__action-layout">
  70. <i class="{{iconClass}}"></i>
  71. </div>
  72. </a>
  73. {{/links}}
  74. </nav>
  75. </div>