This commit is contained in:
Inhji 2023-09-09 14:37:26 +02:00
parent 347b37b3be
commit fa495b68e9
5 changed files with 132 additions and 100 deletions

View file

@ -73,7 +73,7 @@
/* === PAGE HEADER === */ /* === PAGE HEADER === */
header.page-header { header.page-header {
@apply border-b border-slate-300; @apply border-b border-slate-300 mb-6;
} }
header.page-header h1 { header.page-header h1 {
@ -83,6 +83,20 @@
header.page-header p { header.page-header p {
@apply mb-3; @apply mb-3;
} }
/* === PAGE GRID === */
section.page-grid {
@apply grid grid-cols-1 md:grid-cols-3 gap-3;
> section {
@apply col-span-1 md:col-span-2;
}
> aside {
@apply print:hidden;
}
}
} }
/* /*

View file

@ -2,13 +2,13 @@
<h1><%= Enum.count(@notes) %> Bookmarks</h1> <h1><%= Enum.count(@notes) %> Bookmarks</h1>
</header> </header>
<section class="mt-6 grid grid-cols-1 md:grid-cols-3 gap-3"> <section class="page-grid">
<section class="col-span-1 md:col-span-2"> <section>
<.note_list notes={@notes} layout={@channel.layout} /> <.note_list notes={@notes} layout={@channel.layout} />
</section> </section>
<section> <aside>
<.tag_list notes={@notes} /> <.tag_list notes={@notes} />
</section> </aside>
</section> </section>

View file

@ -3,6 +3,12 @@
<p><%= Markdown.render(@channel.content) |> raw %></p> <p><%= Markdown.render(@channel.content) |> raw %></p>
</header> </header>
<div class="w-full mt-6 sm:w-auto flex flex-col gap-1.5"> <section class="page-grid">
<.note_list notes={@channel.notes}/> <section>
</div> <.note_list notes={@channel.notes} layout={@channel.layout} />
</section>
<aside>
<.tag_list notes={@channel.notes} />
</aside>
</section>

View file

@ -1,3 +1,5 @@
<section class="page-grid">
<section>
<article class="h-entry hentry | stack container"> <article class="h-entry hentry | stack container">
<header> <header>
<h1 class="p-name | text-3xl leading-10 font-bold text-theme-base1"> <h1 class="p-name | text-3xl leading-10 font-bold text-theme-base1">
@ -5,33 +7,10 @@
</h1> </h1>
</header> </header>
<section class="print:hidden">
<ul class="flex gap-3">
<li>
<a href={~p"/admin/notes/#{@note}/edit"} class="button">
Edit
</a>
</li>
<li>
<a href={~p"/admin/notes/#{@note}"} class="button">
Show in Admin
</a>
</li>
</ul>
</section>
<aside> <aside>
<.featured_images note={@note} /> <.featured_images note={@note} />
</aside> </aside>
<%= if has_outline?(@note) do %>
<aside class="prose max-w-none print:hidden">
<div class="bg-theme-background1 rounded p-2">
<%= raw(render_outline(@note)) %>
</div>
</aside>
<% end %>
<section class="p-summary e-content | prose max-w-none"> <section class="p-summary e-content | prose max-w-none">
<%= Markdown.render(@note.content) |> raw %> <%= Markdown.render(@note.content) |> raw %>
</section> </section>
@ -97,3 +76,36 @@
<% end %> <% end %>
</section> </section>
</article> </article>
</section>
<aside class="prose max-w-none">
<h3>Admin</h3>
<section>
<ul>
<li>
<a href={~p"/admin/notes/#{@note}/edit"} class="button">
Edit
</a>
</li>
<li>
<a href={~p"/admin/notes/#{@note}"} class="button">
Show in Admin
</a>
</li>
</ul>
</section>
<h3>Outline</h3>
<%= if has_outline?(@note) do %>
<aside>
<div class="bg-theme-background1 rounded p-2">
<%= raw(render_outline(@note)) %>
</div>
</aside>
<% end %>
</aside>
</section>

View file

@ -3,12 +3,12 @@
<p><%= Markdown.render(@channel.content) |> raw %></p> <p><%= Markdown.render(@channel.content) |> raw %></p>
</header> </header>
<section class="mt-6 grid grid-cols-1 md:grid-cols-3 gap-3"> <section class="page-grid">
<section class="col-span-1 md:col-span-2"> <section>
<.note_list notes={@notes} /> <.note_list notes={@notes} />
</section> </section>
<section> <aside>
<.tag_list notes={@notes} /> <.tag_list notes={@notes} />
</section> </aside>
</section> </section>