houdini/app/views/layouts/_top_nav.html.erb
2020-06-15 10:26:57 -05:00

22 lines
No EOL
668 B
Text

<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
<%= content_for(:side_nav_hidden) {'hidden'} %>
<nav class="topNav">
<div class='container u-padding--15'>
<div class='topNav-logo'>
<a href='<%= root_path %>' title='Go To Home Page'><%= render '/common/full_logo' %></a>
</div>
<div class='topNav-horizontalLinks'>
<%= render '/components/top_nav_links' %>
<% if !current_user %>
<button data-ff-open-onboard class='button--small blue'>
Get Started
</button>
<% end %>
</div>
</div>
</nav>