Make title a link
This commit is contained in:
parent
c4715b172d
commit
9d17c1d838
|
@ -70,6 +70,10 @@ a:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
a:link:has(h1), a:visited:has(h1) {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
main {
|
main {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,8 +33,7 @@ class UsersController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show; end
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,9 @@
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1>Summon Player</h1>
|
<%= link_to root_path do %>
|
||||||
|
<h1>Summon Player</h1>
|
||||||
|
<% end %>
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
<li><%= link_to t("home"), root_path %></li>
|
<li><%= link_to t("home"), root_path %></li>
|
||||||
|
|
Loading…
Reference in New Issue