1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/theme/templates/base.html

56 lines
1.8 KiB
HTML
Raw Normal View History

2016-05-14 14:26:44 +01:00
<!DOCTYPE html>
<html lang="en">
2016-05-15 17:42:35 +01:00
<head>
2016-05-14 14:26:44 +01:00
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
2016-05-15 17:46:00 +01:00
<title>{% block htmltitle %}Page{% endblock%} - {{ SITENAME }}</title>
2016-05-15 17:42:35 +01:00
2016-05-20 08:51:15 +01:00
<link rel="stylesheet" href="/static/css/index.css" type="text/css">
2016-05-15 17:42:35 +01:00
</head>
<body id="page-top">
{% block navbar %}
2016-05-21 21:58:01 +01:00
{% include "extras/navbar.html" %}
{% endblock %}
2016-05-14 14:26:44 +01:00
2016-05-20 08:51:15 +01:00
{% block content %}{% endblock %}
2016-05-14 14:26:44 +01:00
2016-05-21 20:35:59 +01:00
<footer>
<div class="container">
<div class="row">
<div class="col-xs-12">
<p class="social">
{% for key, link in SOCIAL.items()|sort %}
<a href="{{ link.url }}"><i class="fa {{ link.icon }}"></i></a>
{% endfor %}
</p>
</div>
</div>
<div class="row">
<div class="col-xs-12 powered-by">
2016-05-21 21:54:07 +01:00
<p>
Powered by <a href="http://blog.getpelican.com/">Pelican</a>,
<a href="https://clients.inceptionhosting.com/aff.php?aff=256">Inception Hosting</a>,
and a whole heap of <a href="https://github.com/RealOrangeOne/theorangeone.net">Magic</a>!
</p>
2016-05-21 20:35:59 +01:00
</div>
</div>
<div class="row">
<div class="col-xs-12">
2016-05-21 21:54:07 +01:00
<a href="https://circleci.com/gh/RealOrangeOne/theorangeone.net">
<img class="ci-badge" src="https://circleci.com/gh/RealOrangeOne/theorangeone.net.svg?style=svg" alt="CI Badge" />
2016-05-21 20:35:59 +01:00
</a>
</div>
</div>
</div>
</footer>
2016-05-20 08:51:15 +01:00
<script src="/static/js/jquery.js"></script>
<script src="/static/js/libs.js"></script>
<script src="/static/js/app.js"></script>
2016-05-15 17:42:35 +01:00
</body>
2016-05-14 14:26:44 +01:00
</html>