2014-12-23 22:50:09 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{{ site.name }} - {% if page.title | size > 0 %}{{ page.title }}{% else %}{{ site.description }}{% endif %}</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="author" content="Thomas Jensen" />
|
|
|
|
<meta name="robots" content="index,follow" />
|
2014-12-24 14:05:14 +01:00
|
|
|
{% if page.sedesc %}
|
2014-12-25 19:39:38 +01:00
|
|
|
<!-- start page -->
|
2014-12-24 14:05:14 +01:00
|
|
|
<meta name="description" content="{{ page.sedesc }}" />
|
2014-12-25 18:29:13 +01:00
|
|
|
<meta name="keywords" content="software, ascii, ascii art, filter, command line, box, boxes, box drawing" />
|
2014-12-25 19:39:38 +01:00
|
|
|
<link rel="canonical" href="http://{{ page.sitehost }}/" />
|
|
|
|
{% else %}
|
|
|
|
<link rel="canonical" href="http://{{ page.sitehost }}{{ page.url }}" />
|
2014-12-24 14:05:14 +01:00
|
|
|
{% endif %}
|
2014-12-25 15:31:54 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
if (window.location.hostname == "ascii-boxes.github.io") {
|
2014-12-25 18:29:13 +01:00
|
|
|
var prjNamePrefix = "/{{ site.name }}";
|
|
|
|
var targetPath = window.location.pathname;
|
|
|
|
if (targetPath == prjNamePrefix) {
|
|
|
|
targetPath = "/";
|
|
|
|
}
|
|
|
|
else if (targetPath.indexOf(prjNamePrefix + "/") == 0) {
|
|
|
|
targetPath = targetPath.substring(prjNamePrefix.length);
|
|
|
|
}
|
2014-12-25 19:39:38 +01:00
|
|
|
window.location = window.location.protocol + "//{{ page.sitehost }}"
|
2014-12-25 18:29:13 +01:00
|
|
|
+ targetPath + window.location.hash;
|
2014-12-25 15:31:54 +01:00
|
|
|
}
|
|
|
|
</script>
|
2014-12-23 22:50:09 +01:00
|
|
|
<script src="{{ site.baseurl }}/js/jquery.min.js"></script>
|
|
|
|
<script src="{{ site.baseurl }}/js/bootstrap.min.js"></script>
|
|
|
|
<link href="{{ site.baseurl }}/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<link href="{{ site.baseurl }}/css/theme.css" rel="stylesheet">
|
2014-12-26 22:45:37 +01:00
|
|
|
<link href="{{ site.baseurl }}/css/boxes.css" rel="stylesheet">
|
2014-12-23 22:50:09 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
|
|
|
<div class="navbar-header">
|
|
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
|
|
|
<span class="sr-only">Toggle navigation</span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
</button>
|
|
|
|
<a class="navbar-brand" href="{{ site.baseurl }}/">{{ site.name }}</a>
|
|
|
|
</div>
|
|
|
|
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
|
|
|
<ul class="nav navbar-nav">
|
|
|
|
<li class="active"><a href="{{ site.baseurl }}/about.html">About</a></li>
|
|
|
|
<li class="active"><a href="{{ site.baseurl }}/examples.html">Examples</a></li>
|
2015-03-17 17:46:34 +01:00
|
|
|
<li class="active"><a href="{{ site.baseurl }}/docs/">Documentation</a></li>
|
2014-12-23 22:50:09 +01:00
|
|
|
<li class="active"><a href="{{ site.baseurl }}/contributing.html">Contributing</a></li>
|
|
|
|
<li class="active"><a href="{{ site.baseurl }}/download.html"><b>Download</b></a></li>
|
|
|
|
<li class="active visible-xs-block"><a href="{{ site.baseurl }}/links.html">Links</a></li>
|
|
|
|
{% if site.github != '' %}
|
|
|
|
<li class="active"><a href="https://github.com/{{ site.github }}">Github</a></li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|