-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path_header.html.erb
More file actions
35 lines (32 loc) · 1.31 KB
/
_header.html.erb
File metadata and controls
35 lines (32 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<% if current_page.data.alert %>
<div class="alert alert-warning landing-alert">
<div class="container text-center">
<h5><%= current_page.data.alert %></h5>
</div>
</div>
<% end %>
<!-- header start -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" id="navbar-brand-fix" href="/">
<img src="/images/DataCite-Metadata-Schema-logo_bicolor-light-sm.svg" title="<%= ENV['SITE_TITLE'] %>" style="height:100%;">
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><%= link_to "Schema 4.7", "/meta/kernel-4.7/"%></li>
<li><%= link_to "Release History", "/versions.html"%></li>
<li><%= link_to "Contribute", "/contribute.html"%></li>
<li><%= link_to "Support ↗", "http://support.datacite.org" %></li>
</ul>
</div>
</div>
</nav>
<!-- header end -->