This repository was archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlayout.html
84 lines (83 loc) · 4.29 KB
/
layout.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block title %}
<title>TrueCraft</title>
{% endblock %}
<link rel="stylesheet" href="//cdn.jsdelivr.net/editor/0.1.0/editor.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="alternate" type="application/rss+xml" title="TrueCraft Updates" href="/rss.xml">
<link rel="icon" type="image/vnd.microsoft.icon" href="//avatars2.githubusercontent.com/u/4286195?v=2&s=200">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="/static/base.css">
{% block styles %}{% endblock %}
</head>
<body>
<div class="container">
<header>
<h1 class="title">
<a href="/">
True
<img src="/static/truecraft_earth.svg" height="150" />
Craft
</a>
</h1>
</header>
<div class="content">
<p class="tagline">A free and open-source implementation of Minecraft Beta 1.7.3</p>
<div class="main">
<nav class="navbar">
<div class="inner">
<ul class="nav navbar-nav">
<li><a href="/download">Download</a></li>
<li><a href="/updates">Updates</a></li>
<li><a href="https://github.com/SirCmpwn/TrueCraft">GitHub</a></li>
<li><a href="https://reddit.com/r/truecraft">Community</a></li>
<li><a href="http://webchat.esper.net/?nick=&channels=truecraft">Chat</a></li>
</ul>
<div class="collapse navbar-collapse" id="navbar-collapse">
{% if not user %}
<ul class="nav navbar-nav navbar-right">
<li><a href="/login">Log In</a></li>
<li><a href="/register">Register</a></li>
</ul>
{% else %}
<ul class="nav navbar-nav navbar-right">
<li class="navbar-text">Hi <a href="/user/{{ user.username }}">{{ user.username }}</a> — <a href="/logout">Log out</a></li>
</ul>
{% endif %}
</div>
<span class="blc"></span>
<span class="trc"></span>
</div>
</nav>
<article class="body">
{% block body %}{% endblock %}
</article>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//cdn.jsdelivr.net/editor/0.1.0/editor.js"></script>
<script src="//cdn.jsdelivr.net/editor/0.1.0/marked.js"></script>
{% if not do_not_track %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58114378-1', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
{% block scripts %}{% endblock %}
</body>
</html>