-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathlayout.erb
36 lines (32 loc) · 1.1 KB
/
layout.erb
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
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><%= title %></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="<%= prefix_url("assets/application.css") %>" rel="stylesheet">
<% if @repo %>
<link href="<%= atom_feed_url @repo.name, params[:ref] %>" title="Commits to <%= @repo.name %><%= ": #{params[:ref]}" if params[:ref] %>" type="application/atom+xml" rel="alternate">
<% end %>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="<%= prefix_url %>">
<%= h Ginatra.config.sitename %>
</a>
<p class="navbar-text"><%= h Ginatra.config.description %></p>
</div>
</div>
</nav>
<% if @repo %>
<%= partial :header, locals: { repo: @repo, stats: repo_stats(@repo) } %>
<% end %>
<div class="container-fluid">
<%= yield %>
</div>
<%= partial :footer %>
<script src="<%= prefix_url("assets/application.js") %>"></script>
</body>
</html>