| 1234567891011121314151617181920212223 |
- <% layout("/en/layout", { title: "panel" }) %>
- <%~ include("/en/panel/partials/navbar") %>
- <% const stationsIcon = `
- <svg class="icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
- <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
- <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" />
- <circle cx="12" cy="12" r="2" />
- </g>
- </svg>
- ` %>
- <h2>welcome <%= it.user.name?.length ? it.user.name : it.user.email %>!</h2>
- <section class="container-row">
- <a role="button" href="/en/panel/stations"><%~ stationsIcon %> stations</a>
- </section>
- <section>
- <h3>recent warnings</h3>
- <p>no recent warnings yet.</p>
- </section>
|