|
1 |
| -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
2 |
| -"http://www.w3.org/TR/html4/loose.dtd"> |
3 |
| -<html> |
4 |
| -<head> |
5 |
| -<title>{{ page.title }}</title> |
6 |
| -<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
7 |
| -<meta name="viewport" content="width=device-width"> |
8 |
| -<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> |
9 |
| -<link rel="stylesheet" href="/master.css" type="text/css"> |
10 |
| -</head> |
11 |
| -<body> |
12 |
| -{% include breadcrumbs.html %} |
13 |
| -<h1>{{ page.title }}</h1> |
14 |
| -{{ content }} |
15 |
| -</body> |
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <title>{{ page.title }}</title> |
| 6 | + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 7 | + <meta name="viewport" content="width=device-width"> |
| 8 | + <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> |
| 9 | + <link rel="stylesheet" href="/css/bootstrap.min.css" type="text/css"> |
| 10 | + <style type="text/css"> |
| 11 | + body { |
| 12 | + padding-top: 40px; |
| 13 | + padding-bottom: 40px; |
| 14 | + } |
| 15 | + </style> |
| 16 | + </head> |
| 17 | + <body> |
| 18 | + <div class="navbar navbar-fixed-top"> |
| 19 | + <div class="navbar-inner"> |
| 20 | + <div class="container"> |
| 21 | + <a class="brand" href="/">sourcefu</a> |
| 22 | + <div class="nav-collapse"> |
| 23 | + <ul class="nav"> |
| 24 | + <li><a href="/">Home</a></li> |
| 25 | + <li><a href="/topics/">Topics</a></li> |
| 26 | + <li><a href="/members/">Members</a></li> |
| 27 | + <li><a href="http://irclog.greptilian.com/sourcefu/">IRC Log</a></li> |
| 28 | + </ul> |
| 29 | + </div> |
| 30 | + </div> |
| 31 | + </div> |
| 32 | + </div> |
| 33 | + |
| 34 | + <div class="container"> |
| 35 | + <h1>{{ page.title }}</h1> |
| 36 | + {{ content }} |
| 37 | + </div> |
| 38 | + |
| 39 | + </body> |
16 | 40 | </html>
|
| 41 | + |
0 commit comments