-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlayout.erb
More file actions
68 lines (57 loc) · 2.12 KB
/
Copy pathlayout.erb
File metadata and controls
68 lines (57 loc) · 2.12 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="<%= @site.meta_description %>" />
<meta name="keywords" content="<%= @site.meta_keywords %>" />
<% if @title != @site.title %>
<title><%= @title %> - <%= @site.title %></title>
<% else %>
<title><%= @site.title %></title>
<% end %>
<link rel="alternate" href="/index.atom" type="application/atom+xml" />
<link href="<%= @theme.path %>/js/google-code-prettify/prettify.css" rel="stylesheet">
<link href="<%= @theme.path %>/css/bootstrap-1.0.0.css" rel="stylesheet">
<link href="<%= @theme.path %>/css/style.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="<%= @theme.path %>/js/google-code-prettify/prettify.js"></script>
<script src="<%= @theme.path %>/js/application.js"></script>
<script src="https://apis.google.com/js/plusone.js">{lang: 'ja'}</script>
<!--[if IE]><script src="<%= @theme.path %>/js/html5.js"></script><![endif]-->
<%= header %>
</head>
<body>
<div class="container">
<!-- ====================
Header
==================== -->
<header>
<h1><a href="/"><img src="<%= @theme.path %>/images/logo.png" width="396" height="71" alt="<%= @site.title %>" /></a></h1>
<div id="search">
<form action="/search/" method="get" id="searchform">
<input type="text" name="query" class="search_field medium">
<input type="image" src="<%= @theme.path %>/images/ico_loope.png" alt="検索する" title="検索する" class="loope" />
</form>
<!-- /div#search --></div>
</header>
<!-- ====================
Contents
==================== -->
<div class="contents row">
<div class="main-column span11">
<%= yield %>
<!-- /div.main-column --></div>
<div class="sub-column span5">
<%= partial "side" %>
<!-- /div.sub-column --></div>
<!-- /div.contents --></div>
<!-- /div.container --></div>
<!-- ====================
Footer
==================== -->
<footer>
Copyright© <%= @site.title %> All Rights Reserved - Powered by <%= link_to "Lokka", "http://lokka.org/", :id => "lokka_link" %>
</footer>
<%= footer %>
</body>
</html>