You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
Plaintext
15 lines
393 B
Plaintext
2 years ago
|
<ul>
|
||
|
<% if request.path_info == "/about" %>
|
||
|
<li class="asideitem grayed">About</li>
|
||
|
<% else %>
|
||
|
<li class="asideitem"><a href="/about">About</a></li>
|
||
|
<% end %>
|
||
|
|
||
|
<% if request.path_info == "/contact" %>
|
||
|
<li class="asideitem grayed">Contact</li>
|
||
|
<% else %>
|
||
|
<li class="asideitem"><a href="/contact">Contact</a></li>
|
||
|
<% end %>
|
||
|
|
||
|
<li class="asideitem"><a href="/">Return</a></li>
|
||
|
</ul>
|