summaryrefslogtreecommitdiff
path: root/app/views/application
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-28 21:23:38 -0400
committerDavid Gay <david@davidgay.org>2021-05-28 21:23:38 -0400
commitca98987c1a14655aedb4bdcf8fef7311131ca1be (patch)
tree38fdd410cd6fdf97df7fe6215b66765875589ed9 /app/views/application
parentdbc5bea2712344664e0760dc287a7f53754b14d1 (diff)
Monsters controller, activities index, and links to activities and items indexes
Diffstat (limited to 'app/views/application')
-rw-r--r--app/views/application/_header.html.erb8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/views/application/_header.html.erb b/app/views/application/_header.html.erb
index 6ca0671..25067f3 100644
--- a/app/views/application/_header.html.erb
+++ b/app/views/application/_header.html.erb
@@ -5,9 +5,15 @@
<div id="header_center" data-turbolinks-permanent>
</div>
<div>
- <ul class="flex flex-row-reverse text-sm">
+ <ul class="flex flex-row text-sm">
<% if user_signed_in? %>
<li class="mr-3">
+ <%= link_to "Activities", activities_path %>
+ </li>
+ <li class="mr-3">
+ <%= link_to "Items", items_path %>
+ </li>
+ <li class="mr-3">
<%= link_to "Logout", logout_path %>
</li>
<% else %>