mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-03-01 15:51:20 +01:00
83 lines
3.9 KiB
HTML
83 lines
3.9 KiB
HTML
<!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" />
|
|
{% if page.sedesc %}
|
|
<!-- start page -->
|
|
<meta name="description" content="{{ page.sedesc }}" />
|
|
<meta name="keywords" content="software, ascii, ascii art, filter, command line, box, boxes, box drawing" />
|
|
<link rel="canonical" href="{{ site.url }}" />
|
|
<meta name="google-site-verification" content="1aKVnBU2bH3H8enn73Zsf9sq10hINZ63MlQ5JM8QkuQ" />
|
|
{% endif %}
|
|
{% include analytics.html %}
|
|
<script type="text/javascript">
|
|
if (window.location.hostname == "ascii-boxes.github.io") {
|
|
var prjNamePrefix = "/{{ site.name }}";
|
|
var targetPath = window.location.pathname;
|
|
if (targetPath == prjNamePrefix) {
|
|
targetPath = "/";
|
|
}
|
|
else if (targetPath.indexOf(prjNamePrefix + "/") == 0) {
|
|
targetPath = targetPath.substring(prjNamePrefix.length);
|
|
}
|
|
window.location = window.location.protocol + "//{{ page.sitehost }}"
|
|
+ targetPath + window.location.hash;
|
|
}
|
|
</script>
|
|
<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">
|
|
<link href="{{ site.baseurl }}/css/boxes.css" rel="stylesheet">
|
|
|
|
<!-- Cookie Consent -->
|
|
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.6/cookieconsent.min.css" />
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.6/cookieconsent.min.js"></script>
|
|
<script>
|
|
window.addEventListener("load", function(){
|
|
window.cookieconsent.initialise({
|
|
"palette": {
|
|
"popup": { "background": "#252e39" },
|
|
"button": { "background": "#14a7d0" }
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</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>
|
|
<li class="active"><a href="{{ site.baseurl }}/docs/">Documentation</a></li>
|
|
<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>
|