mirror of
https://github.com/plausible/analytics.git
synced 2024-12-19 07:31:50 +03:00
18 lines
644 B
Elixir
18 lines
644 B
Elixir
<header class="modal__header">
|
|
<h1>Top Pages</h1>
|
|
<button class="modal__close" aria-label="Close modal" data-micromodal-close></button>
|
|
</header>
|
|
<div class="text-grey-darker text-lg ml-1 mt-1">by pageviews</div>
|
|
<div class="my-4 border-b border-grey-light"></div>
|
|
<main class="modal__content" id="modal-1-content">
|
|
<div class="mt-8">
|
|
<%= for {page, count} <- @top_pages do %>
|
|
<div class="flex items-center justify-between my-2">
|
|
<span><%= page %></span>
|
|
<span title="<%= count %>"><%= large_number_format(count) %></span>
|
|
</div>
|
|
<%= bar(count, @top_pages, :orange) %>
|
|
<% end %>
|
|
</div>
|
|
</main>
|