Skip to content

Commit

Permalink
Switched to using Twitter Bootstrap, specifically the Spacelab theme …
Browse files Browse the repository at this point in the history
  • Loading branch information
spilth committed Dec 16, 2012
1 parent ef55241 commit 7f9aa7f
Show file tree
Hide file tree
Showing 4 changed files with 945 additions and 21 deletions.
55 changes: 40 additions & 15 deletions _layouts/default.html
@@ -1,16 +1,41 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>{{ page.title }}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/master.css" type="text/css">
</head>
<body>
{% include breadcrumbs.html %}
<h1>{{ page.title }}</h1>
{{ content }}
</body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/bootstrap.min.css" type="text/css">
<style type="text/css">
body {
padding-top: 40px;
padding-bottom: 40px;
}
</style>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="/">sourcefu</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="/">Home</a></li>
<li><a href="/topics/">Topics</a></li>
<li><a href="/members/">Members</a></li>
<li><a href="http://irclog.greptilian.com/sourcefu/">IRC Log</a></li>
</ul>
</div>
</div>
</div>
</div>

<div class="container">
<h1>{{ page.title }}</h1>
{{ content }}
</div>

</body>
</html>

0 comments on commit 7f9aa7f

Please sign in to comment.