index.eta 848 B

1234567891011121314151617181920212223
  1. <% layout("/sk/layout", { title: "panel" }) %>
  2. <%~ include("/sk/panel/partials/navbar") %>
  3. <% const staniceIcon = `
  4. <svg class="icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
  5. <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
  6. <path d="M16.247 7.761a6 6 0 0 1 0 8.478m2.828-11.306a10 10 0 0 1 0 14.134m-14.15 0a10 10 0 0 1 0-14.134m2.828 11.306a6 6 0 0 1 0-8.478" />
  7. <circle cx="12" cy="12" r="2" />
  8. </g>
  9. </svg>
  10. ` %>
  11. <h2>vitajte <%= it.user.name?.length ? it.user.name : it.user.email %>!</h2>
  12. <section class="container-row">
  13. <a role="button" href="/panel/stations"><%~ staniceIcon %> stanice</a>
  14. </section>
  15. <section>
  16. <h3>posledné upozornenia</h3>
  17. <p>zatiaľ žiadne upozornenia.</p>
  18. </section>