docbrown/app/views/admin/welcome/index.html.erb
ludwiczakpawel bf8e2e53f1
Titles & subtitles cleanup (#10508)
* .

* .

* .
2020-10-02 12:37:39 +02:00

13 lines
453 B
Text

<%= csrf_meta_tags %>
<header class="flex items-center mb-6">
<h2 class="crayons-title">Welcome Threads</h2>
<%= link_to "Create A New Welcome Thread", admin_welcome_index_path, method: :post, class: "btn btn-primary ml-auto" %>
</header>
<div class="crayons-card p-6 grid gap-4">
<% @daily_threads.each do |thread| %>
<a class="crayons-card crayons-card--secondary p-3" href="<%= thread.path %>"><%= thread.title %></a>
<% end %>
</div>