mirror of
https://github.com/github/choosealicense.com
synced 2024-12-22 04:40:09 +01:00
8ae085df65
The breadcrumbs navigation is now in the default template. The removes some duplication. The only page it shouldn't be shown on is the home page.
46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
<head>
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title}}</title>
|
|
<meta charset='utf-8'>
|
|
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
|
|
<link href='../../../favicon.ico' rel='shortcut icon' type='image/x-icon'>
|
|
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
|
|
<link type="text/css" href="../../../css/application.css" media="screen" rel="stylesheet">
|
|
<link type="text/css" href="../../../css/jquery.qtip.css" media="screen" rel="stylesheet">
|
|
<script type="text/javascript" src="../../javascripts/jquery-1.7.1.min.js"></script>
|
|
<script type="text/javascript" src="../../javascripts/annotations.js"></script>
|
|
<script type="text/javascript" src="../../javascripts/app.js"></script>
|
|
<script type="text/javascript" src="../../javascripts/jquery.qtip.min.js"></script>
|
|
<script type="text/javascript" src="../../javascripts/modernizr.js"></script>
|
|
<!--[if (gte IE 6)&(lte IE 8)]>
|
|
<script src='../../../javascripts/selectivizr-min.js' type='text/javascript'></script>
|
|
<![endif]-->
|
|
</head>
|
|
<body class="{{ page.layout }} {{ page.class }}">
|
|
<div class='container'>
|
|
|
|
{% unless page.class == "home" %}
|
|
<ol class='breadcrumbs'>
|
|
<li>
|
|
<a href="/">Home</a>
|
|
</li>
|
|
</ol>
|
|
{% endunless %}
|
|
|
|
{{ content }}
|
|
|
|
<footer class="site-footer cf">
|
|
<nav>
|
|
<a href="/about/">About</a>
|
|
<a href="https://help.github.com/articles/github-terms-of-service">Terms of Service</a>
|
|
</nav>
|
|
<p>
|
|
Please consult a legal expert before adopting a software license for your project.<br>
|
|
This site is licensed under the <a href="http://creativecommons.org/licenses/by/3.0/">
|
|
Creative Commons Attribution 3.0 Unported License</a>.</p>
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |