forked from ruby/www.ruby-lang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
55 lines (49 loc) · 1.69 KB
/
default.html
File metadata and controls
55 lines (49 loc) · 1.69 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
{% if page.title != null %}
<title>{{ page.title }}</title>
{% else %}
<title>Ruby Programming Language</title>
{% endif %}
<link rel="stylesheet" type="text/css" href="/stylesheets/low.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/screen.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/stylesheets/print.css" media="print" />
<link title="Low vision" rel="alternate stylesheet" type="text/css" href="/stylesheets/low_vision_screen.css" media="screen" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
</head>
<body>
<div id="page">
<div id="header">
<div id="logo">
<a href="/{{ page.lang }}/"><img src="/images/logo.gif" width="331" height="119" alt="Ruby - A Programmer's Best Friend" title=""></a>
</div>
<div class="site-links">
{% include sitelinks.html %}
</div>
</div>
<hr class="hidden-modern" />
<div id="main-wrapper">
<div id="main">
{{ content }}
<div class="foot">
<div class="site-links">
{% include sitelinks.html %}
</div>
</div>
</div>
</div>
<div id="search-box">
{% include search.html %}
</div>
<div id="footer">
<div class="fine-print">
{% include footer.html %}
</div>
</div>
</div>
{% include analytics.html %}
</body>
</html>