blog/themes/xsteadfastx-greg/templates/base.html
Marvin Steadfast f0fc7fb21e added search and some small other fixes
uses tipue search now to search for posts. also removed unneeded
fontawesome and added make serve port to Vagrantfile.
2015-08-26 08:57:49 +00:00

124 lines
4.5 KiB
HTML

<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
{% block header %}
{% if EXTRA_HEADER %}
{{ EXTRA_HEADER }}
{% endif %}
{% endblock %}
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>{% block title %}{% endblock %}</title>
<meta name="google-site-verification" content="AgIAQN_qsniIQWOq659Bnhzx-LZts2FdgP1kLgtQg-k" />
<meta name="description" content="{% block metadesc %}{% endblock %}">
<meta name="author" content="{{ AUTHOR }}">
<!-- Feeds
================================================== -->
{% if FEED_ATOM %}
<link rel="alternate" type="application/atom+xml" href="{{ FEED_DOMAIN }}/feed/" title="{{ SITENAME }} Full Feed">
{% endif %}
<!-- Facebook Open Graph
================================================== -->
<meta property="og:title" content="{{ TITLE }}">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ SITEURL }}">
<meta property="og:image" content="{{ AVATAR }}">
<meta property="og:description" content="{{ DESCRIPTION }}">
<!-- Twitter Cards
================================================== -->
{% if TWITTER_CARDS %}
{% block twittercards %}{% endblock %}
{% endif %}
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="/theme/css/base.css">
<link rel="stylesheet" href="/theme/css/skeleton.css">
<link rel="stylesheet" href="/theme/css/layout.css">
<link rel="stylesheet" href="/theme/css/simply.css">
<link rel="stylesheet" href="/theme/css/pygment.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- JavaScript
=================================================== -->
<script src="/theme/bower_components/jquery-2.1.4.min/index.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" type ="image/png" href="/theme/images/favicon.png">
<link rel="apple-touch-icon" href="/theme/images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="/theme/images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="/theme/images/apple-touch-icon-114x114.png">
</head>
<body>
<!-- Primary Page Layout
================================================== -->
<div class="container">
<section id="sidebar" class="two columns">
<a href="/"><img id="avatar" src="{{ AVATAR }}"></img></a>
<hr class="small" />
<div id="social">
{% if TWITTER_NAME %}
<a class="icon" href="http://twitter.com/{{ TWITTER_NAME }}" title="Twitter"><i class="icon-twitter"></i></a>
{% endif %}
{% if GITHUB_URL %}
<a class="icon" href="{{ GITHUB_URL }}" title="GitHub"><i class="icon-github"></i></a>
{% endif %}
<a class="icon" href="{{ FEED_DOMAIN }}/feed/" title="Subscribe (Atom)"><i class="icon-rss"></i></a>
{% if 'tipue_search' in PLUGINS %}
<a class="icon" href="{{ SITEURL }}/pages/search.html" title="Search"><i class="icon-search"></i></a>
{% endif %}
</div> <!-- social -->
<!-- <hr class="small" />
<div class="nav">
<ul>
<li><a href="/about">About</a></li>
<li><a href="/work">Work</a></li>
</ul>
</div> -->
</section> <!-- sidebar -->
<section id="content" class="thirteen columns offset-by-one">
{% block content %}{% endblock %}
</section>
<footer class="thirteen columns offset-by-one">
<!-- <hr class="small"> -->
<p>Generated with <a href="http://getpelican.com">Pelican</a>. Layout done with <a href="http://getskeleton.com">Skeleton</a>. Icons are <a href="http://fortawesome.github.com/Font-Awesome/">Font Awesome</a>. <a href="{{ SITEURL }}/pages/impressum.html">Impressum.</a></p>
</footer>
</div><!-- container -->
<!-- Include other templates
=============================================== -->
{% include 'analytics.html' %}
<!-- Include scripts
=============================================== -->
{% block scripts %}{% endblock %}
<!-- End Document
================================================== -->
</body>
</html>