Annotate templates with TODOs for markup replacement

To open source the project down the line, it makes sense to have either
everything custom or using OSS components in order to keep licensing as
simple as possible.
This commit is contained in:
Claudio Ortolina
2024-12-04 14:43:07 +00:00
parent a279d6175e
commit 24319b1bff
10 changed files with 50 additions and 39 deletions
@@ -1,3 +1,4 @@
<%!-- TODO: replace with OSS version --%>
<nav class="border-b border-slate-900/10 dark:border-slate-300/10">
<div class="mx-auto max-w-screen-xl px-4 sm:px-6 lg:px-8">
<div class="flex h-16 justify-between">
@@ -36,6 +36,7 @@
</head>
<body class="bg-white dark:bg-zinc-900">
{@inner_content}
<%!-- TODO: replace with OSS version --%>
<footer class="mt-8 border-t border-slate-900/10 dark:border-slate-300/10">
<div class="mx-auto max-w-7xl px-6 pb-8 lg:px-8">
<div class="pt-8 flex items-center justify-between">
@@ -11,6 +11,7 @@ defmodule MusicLibraryWeb.Pagination do
assigns = assign(assigns, :page_links, page_links)
~H"""
<%!-- TODO: replace with OSS version --%>
<div
:if={@page_links.total_pages > 1}
id={@id}