* Removes header to allow embedding in frame * Escaped links in podcast RSS builder * Turned homepage sections into clickable links * Enabled live dashboard in all ENVs * Ensured download worker always returns a 2-member tuple
27 lines
1.2 KiB
Text
27 lines
1.2 KiB
Text
<div class="grid grid-cols-1 gap-4 md:grid-cols-3">
|
|
<div class="rounded-sm border px-7.5 py-6 shadow-default border-strokedark bg-boxdark">
|
|
<a href={~p"/media_profiles"} class="mt-4 flex flex-col items-center justify-center">
|
|
<span class="text-md font-medium">Media Profile(s)</span>
|
|
<h4 class="text-title-md font-bold text-white">
|
|
<%= @media_profile_count %>
|
|
</h4>
|
|
</a>
|
|
</div>
|
|
<div class="rounded-sm border px-7.5 py-6 shadow-default border-strokedark bg-boxdark">
|
|
<a href={~p"/sources"} class="mt-4 flex flex-col items-center justify-center">
|
|
<span class="text-md font-medium">Source(s)</span>
|
|
<h4 class="text-title-md font-bold text-white">
|
|
<%= @source_count %>
|
|
</h4>
|
|
</a>
|
|
</div>
|
|
<div class="rounded-sm border px-7.5 py-6 shadow-default border-strokedark bg-boxdark">
|
|
<a href="#" class="mt-4 flex flex-col items-center justify-center">
|
|
<span class="text-md font-medium">Media Item(s)</span>
|
|
<h4 class="text-title-md font-bold text-white">
|
|
<%= @media_item_count %>
|
|
</h4>
|
|
</a>
|
|
</div>
|
|
<span class="text-strokedark">I know this page isn't super useful yet, but give it time :)</span>
|
|
</div>
|