-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathdefault.html
More file actions
35 lines (29 loc) · 834 Bytes
/
default.html
File metadata and controls
35 lines (29 loc) · 834 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title> {% if page.title %} {{ page.title }} | {% endif %} Ruby Hacking Guide </title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/highlight.css" />
</head>
<body>
<div id="main">
<header>
<h1><a href="/">Ruby Hacking Guide</a></h1>
</header>
<nav role="navigation">
<ul>
</ul>
</nav>
{{ content }}
<footer>
The original work is Copyright © 2002 - 2004 Minero AOKI.
Translated by Vincent ISAMBART and Clifford Escobar CAOILE
This work is licensed under a
<p>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.5/">Creative Commons Attribution-NonCommercial-ShareAlike2.5 License</a>
</p>
</footer>
</div>
</body>
</html>