Skip to content

Commit b91f612

Browse files
committed
Added a default layout.
1 parent 0fa1973 commit b91f612

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

_layouts/default.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
2+
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
6+
{% if page.title != null %}
7+
<title>{{ page.title }}</title>
8+
{% else %}
9+
<title>Ruby Programming Language</title>
10+
{% endif %}
11+
<link rel="stylesheet" type="text/css" href="/stylesheets/low.css" />
12+
<link rel="stylesheet" type="text/css" href="/stylesheets/screen.css" media="screen" />
13+
<link rel="stylesheet" type="text/css" href="/stylesheets/print.css" media="print" />
14+
<link title="Low vision" rel="alternate stylesheet" type="text/css" href="/stylesheets/low_vision_screen.css" media="screen" />
15+
16+
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
17+
</head>
18+
19+
<body id="home-page-layout">
20+
{{ content }}
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)