13 lines
453 B
Text
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>
|