pelican-mg/templates/base.html

290 lines
13 KiB
HTML
Raw Normal View History

2014-12-29 22:08:56 +00:00
<!DOCTYPE html>
2015-01-09 18:56:22 +00:00
{% if article %}
<!--[if lt IE 7]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9 lt-ie8 lt-ie7" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/BlogPosting"> <![endif]-->
<!--[if IE 7]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9 lt-ie8" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/BlogPosting"> <![endif]-->
<!--[if IE 8]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/BlogPosting"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="{{ DEFAULT_LANG }}" class="no-js" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/BlogPosting"> <!--<![endif]-->
{% elif page %}
<!--[if lt IE 7]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9 lt-ie8 lt-ie7" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/WebPage"> <![endif]-->
<!--[if IE 7]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9 lt-ie8" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/WebPage"> <![endif]-->
<!--[if IE 8]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/WebPage"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="{{ DEFAULT_LANG }}" class="no-js" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/WebPage"> <!--<![endif]-->
{% else %}
<!--[if lt IE 7]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9 lt-ie8 lt-ie7" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/Blog"> <![endif]-->
<!--[if IE 7]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9 lt-ie8" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/Blog"> <![endif]-->
<!--[if IE 8]> <html lang="{{ DEFAULT_LANG }}" class="no-js lt-ie9" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/Blog"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="{{ DEFAULT_LANG }}" class="no-js" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/Blog"> <!--<![endif]-->
{% endif %}
2014-12-29 22:08:56 +00:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2017-08-15 13:16:30 +00:00
<base href="{{ SITEURL }}/">
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
<meta name="description" content="{% block description %}{{ DESCRIPTION }}{% endblock %}">
{% if FAVICON %}<link rel="shortcut icon" href="{{ SITEURL }}/{{ FAVICON }}" type="{{ FAVICON_TYPE|default('image/x-icon') }}">{% endif %}
2017-08-15 22:16:19 +00:00
<link href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed">
<meta name="author" content="{{ AUTHOR }}">
<meta name="copyright" content="{{ AUTHOR }}">
2017-08-15 22:16:19 +00:00
<meta name="twitter:card" content="summary" >
<meta name="twitter:site" content="@{{ TWITTER_USERNAME }}" >
<meta property="og:site_name" content="{{ SITENAME }}" >
{% block seo %}
2017-08-15 22:16:19 +00:00
<meta property="og:title" content="{{ SITENAME }}" >
<meta property="og:type" content="website" >
<meta property="og:url" content="{{ SITEURL }}" >
<meta name="twitter:url" content="{{ SITEURL }}" >
<meta itemprop="name" content="{{ SITENAME }}" >
<meta itemprop="url" content="{{ SITEURL }}">
{% if DESCRIPTION %}
2017-08-15 22:16:19 +00:00
<meta property="og:description" content="{{ DESCRIPTION }}" >
<meta name="twitter:description" content="{{ DESCRIPTION }}" >
<meta itemprop="description" content="{{ DESCRIPTION }}" >
{% endif %}
{% if META_IMAGE %}
2017-08-15 22:16:19 +00:00
<meta property="og:image" content="{{ META_IMAGE }}" >
<meta property="og:image:type" content="{{ META_IMAGE_TYPE }}" >
<meta name="twitter:image" content="{{ META_IMAGE }}" >
<meta itemprop="image" content="{{ META_IMAGE }}" >
{% endif %}
{% endblock %}
<link href='{{ SITEURL }}/theme/css/uikit-2.27.4.min.css' rel='stylesheet' type='text/css'>
{% if not DISABLE_SEARCH %}
<link href='{{ SITEURL }}/theme/css/uikit-2.27.4-search.min.css' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/tipuesearch.css">
{% endif %}
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/solarized-highlight.css">
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/main.css">
2014-12-29 22:08:56 +00:00
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
2015-01-01 20:06:34 +00:00
2017-09-08 15:18:31 +00:00
<header class="mg-header uk-navbar uk-navbar-attached">
2014-12-29 22:08:56 +00:00
<div class="mg-header-content uk-container uk-container-center">
2014-12-29 22:08:56 +00:00
<div class="uk-hidden-small">
<a class="mg-brand uk-navbar-brand" href="{{ SITEURL }}">{% if ALT_NAME %}{{ ALT_NAME }}{% else %}{{ SITENAME }}{% endif %}</a>
<div class="mg-tagline uk-navbar-content">{% if SITESUBTITLE %}{{ SITESUBTITLE }}{% endif %}</div>
</div>
2017-08-18 10:05:32 +00:00
<ul class="mg-skiplinks">
<li><a href="#search-form">Search form</a></li>
</ul>
2017-08-14 20:18:28 +00:00
<div class="mg-header-extra uk-hidden-small">
{% block header_extra %}
{% endblock %}
</div>
<div class="mg-nav-small uk-visible-small">
<a class="mg-nav-menu-toggle-small uk-navbar-toggle" href="#mg-offcanvas" data-uk-offcanvas></a>
<a class="mg-brand uk-navbar-brand uk-navbar-center" href="{{ SITEURL }}">{% if ALT_NAME %}{{ ALT_NAME }}{% else %}{{ SITENAME }}{% endif %}</a>
</div>
2014-12-29 22:08:56 +00:00
</div>
</header>
2017-09-08 15:18:31 +00:00
<main class="mg-main">
2014-12-29 22:08:56 +00:00
<div class="uk-container uk-container-center">
<div class="uk-grid" data-uk-grid-margin>
2015-11-23 17:09:35 +00:00
2014-12-29 22:08:56 +00:00
{% block content %}
2015-11-23 17:09:35 +00:00
{% endblock %}
<div role="navigation" class="uk-width-medium-1-5 uk-hidden-small">
2015-11-23 17:09:35 +00:00
2017-08-15 13:26:47 +00:00
{% if SOCIAL %}
2015-01-08 23:10:05 +00:00
<div class="uk-panel uk-panel-box">
2017-08-18 08:47:33 +00:00
<h2 class="uk-panel-title">Ubiquité</h2>
{% for link_destination, link in SOCIAL %}
<a class="mg-icon-link" href="{{ link }}" title="Link to my {{ link_destination }}">
<i class="uk-icon-{{ link_destination }} uk-icon-medium" aria-hidden="true"></i>
2017-08-15 13:26:47 +00:00
</a>
{% endfor %}
2015-01-08 23:10:05 +00:00
</div>
2015-11-07 19:43:39 +00:00
{% endif %}
2015-01-08 23:10:05 +00:00
2014-12-29 22:08:56 +00:00
<div class="uk-panel uk-panel-box">
<ul class="uk-nav uk-nav-side">
{% if CATEGORY_SAVE_AS %}
2014-12-29 22:08:56 +00:00
<li class="uk-nav-header">Categories</li>
{% for cat, _ in categories %}
<li {% if cat == category %}class="uk-active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
{% endfor %}
{% endif %}
2017-08-15 13:26:47 +00:00
2014-12-29 22:08:56 +00:00
{% if DISPLAY_PAGES_ON_MENU != False %}
<li class="uk-nav-header">Pages</li>
{% for p in pages %}
2014-12-29 22:08:56 +00:00
<li {% if p == page %}class="uk-active"{% endif %}>
<a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a>
</li>
{% endfor %}
{% endif %}
{% if ARCHIVE_SAVE_AS %}
2014-12-29 22:08:56 +00:00
<li class="uk-nav-divider"></li>
2015-01-01 00:19:43 +00:00
<li {% if page_name == 'archives' %}class="uk-active"{% endif %}><a href="{{ SITEURL }}/archives.html">Archives</a></li>
{% endif %}
2014-12-29 22:08:56 +00:00
</ul>
</div>
2017-08-15 13:26:47 +00:00
{% if not DISABLE_SEARCH %}
2014-12-29 22:08:56 +00:00
<div class="uk-panel uk-panel-box">
2017-08-18 10:05:32 +00:00
<form id="search-form" role="search" title="Search form" class="mg-search" action="{{ SITEURL }}/search.html" data-uk-search>
<input type="submit" title="Submit search terms" class="mg-search-button" value="&#xf002;">
<input type="search" title="words" placeholder="words" name="q" class="mg-search-query uk-search-field tipue_search" autocomplete="off">
2017-08-15 13:26:47 +00:00
</form>
2014-12-29 22:08:56 +00:00
</div>
2017-08-15 13:26:47 +00:00
{% endif %}
2015-11-23 17:09:35 +00:00
2014-12-29 22:08:56 +00:00
<div class="uk-panel uk-panel-box">
2017-08-15 13:26:47 +00:00
<h3 class="uk-panel-title">Receive Updates</h3>
<a rel="alternate" type="application/atom+xml" href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" class="mg-feed"><i class="uk-icon-rss uk-icon-medium"></i> ATOM</a>
2014-12-29 22:08:56 +00:00
</div>
{% if LINKS %}
<div class="uk-panel uk-panel-box">
<h3 class="uk-panel-title">Blogroll</h3>
<ul class="uk-nav uk-nav-side">
{% for text, url in LINKS %}
<li><a href="{{ url }}">{{ text }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
{% if SUPPORTS %}
<div class="uk-panel uk-panel-box">
{% for name, link, logo_url, title in SUPPORTS %}
<a href="{{ link }}">
<img class="mg-support-logo" src="{{ logo_url }}" alt="Logo {{ name }}" title="{{ title }}">
</a>
{% endfor %}
</div>
2014-12-29 22:08:56 +00:00
{% endif %}
</div>
</div>
</div>
</main>
2017-09-08 15:19:36 +00:00
<footer class="mg-footer">
2014-12-29 22:08:56 +00:00
<div class="uk-container uk-container-center uk-text-center">
<ul class="mg-icons-small uk-subnav uk-visible-small">
2015-01-01 20:06:34 +00:00
<li><a rel="alternate" type="application/atom+xml" href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" class="uk-icon-button uk-icon-rss"></a></li>
2014-12-29 22:08:56 +00:00
{% if SOCIAL %}
{% for link_destination, link in SOCIAL %}
2014-12-29 22:08:56 +00:00
<li>
<a class="mg-icon-link" href="{{ link }}" title="Link to my {{ link_destination }}">
<i class="uk-icon-{{ link_destination }} uk-icon-medium" aria-hidden="true"></i>
</a>
2014-12-29 22:08:56 +00:00
</li>
{% endfor %}
{% endif %}
</ul>
2014-12-29 22:08:56 +00:00
<div class="mg-author uk-panel">
<p>{{ FOOTER }}</p>
2017-08-15 17:43:05 +00:00
<p>Powered by <a href="http://blog.getpelican.com">Pelican</a>.<br class="uk-visible-small"> Theme <a href="https://github.com/Lucas-C/pelican-mg">mg</a> thanks to <a href="https://github.com/lucachr">Luca Chiricozzi</a></p>
2014-12-29 22:08:56 +00:00
</div>
2015-11-23 17:09:35 +00:00
</div>
2014-12-29 22:08:56 +00:00
</footer>
2017-08-10 00:11:45 +00:00
<aside id="mg-offcanvas" class="uk-offcanvas">
2014-12-29 22:08:56 +00:00
<div class="uk-offcanvas-bar">
2015-01-08 23:10:05 +00:00
2015-11-07 19:43:39 +00:00
{% if not DISABLE_SEARCH %}
2017-08-18 08:46:41 +00:00
<form role="search" title="Search form" class="mg-search" action="{{ SITEURL }}/search.html" data-uk-search>
<input type="submit" title="Submit search terms" class="mg-search-button" value="&#xf002;">
<input type="search" title="words" placeholder="words" name="content" class="mg-search-query uk-search-field tipue_search" autocomplete="off">
2015-01-08 23:10:05 +00:00
</form>
2015-11-07 19:43:39 +00:00
{% endif %}
2015-01-08 23:10:05 +00:00
2014-12-29 22:08:56 +00:00
<ul class="uk-nav uk-nav-offcanvas" data-uk-nav>
2017-08-10 00:11:45 +00:00
{% if CATEGORY_SAVE_AS %}
2014-12-29 22:08:56 +00:00
<li class="uk-nav-header">Categories</li>
{% for cat, _ in categories %}
<li {% if cat == category %}class="uk-active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
{% endfor %}
2017-08-10 00:11:45 +00:00
{% endif %}
2014-12-29 22:08:56 +00:00
{% if DISPLAY_PAGES_ON_MENU != False %}
2015-11-23 17:09:35 +00:00
<li class="uk-nav-header">Pages</li>
{% for p in pages %}
2014-12-29 22:08:56 +00:00
<li {% if p == page %}class="uk-active"{% endif %}>
<a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a>
</li>
{% endfor %}
{% endif %}
2017-08-10 00:11:45 +00:00
{% if ARCHIVE_SAVE_AS %}
2014-12-29 22:08:56 +00:00
<li class="uk-nav-divider"></li>
<li><a href="{{ SITEURL }}/{{ ARCHIVES_URL }}">Archives</a></li>
2017-08-10 00:11:45 +00:00
{% endif %}
{% if LINKS %}
<li class="uk-nav-divider"></li>
<li class="uk-nav-header">Blogroll</li>
{% for text, url in LINKS %}
<li><a href="{{ url }}">{{ text }}</a></li>
{% endfor %}
{% endif %}
{% if SUPPORTS %}
<li class="uk-nav-divider"></li>
{% for name, link, logo_url, title in SUPPORTS %}
2017-08-13 18:36:09 +00:00
<li><a href="{{ link }}">
2017-08-10 00:11:45 +00:00
<img class="mg-support-logo" src="{{ logo_url }}" alt="Logo {{ name }}" title="{{ title }}">
2017-08-13 18:36:09 +00:00
</a></li>
2017-08-10 00:11:45 +00:00
{% endfor %}
{% endif %}
2014-12-29 22:08:56 +00:00
</ul>
</div>
2017-08-10 00:11:45 +00:00
</aside>
2014-12-29 22:08:56 +00:00
2017-08-14 20:18:28 +00:00
<script src="{{ SITEURL }}/theme/js/html5shiv-3.7.2.min.js"></script>
2017-08-13 21:55:44 +00:00
<script src="{{ SITEURL }}/theme/js/jquery-1.10.2.min.js"></script>
<script src="{{ SITEURL }}/theme/js/uikit-2.27.4.min.js"></script>
2015-11-07 19:43:39 +00:00
{% if not DISABLE_SEARCH %}
<script src="{{ SITEURL }}/theme/js/uikit-2.27.4-search.min.js"></script>
2016-01-03 18:25:33 +00:00
<script src="{{ SITEURL }}/theme/js/tipuesearch_set.js"></script>
<script src="{{ SITEURL }}/theme/js/tipuesearch.js"></script>
2017-08-14 20:18:28 +00:00
<script>
{% include 'js/enable-search.js' %}
</script>
2015-11-07 19:43:39 +00:00
{% endif %}
2017-08-14 20:18:28 +00:00
{% if SHARE %}
2016-01-03 18:42:12 +00:00
<script src="{{ SITEURL }}/theme/js/jquery.sticky-kit.js"></script>
2017-08-14 20:18:28 +00:00
<script>
{% include 'js/social.js' %}
</script>
{% endif %}
2017-08-14 20:18:28 +00:00
{% if MG_FILTER_TAGS %}
<script>
{% include 'js/filter-tags.js' %}
</script>
2015-11-07 19:43:39 +00:00
{% endif %}
2014-12-29 22:08:56 +00:00
{% include 'disqus_count.html' %}
{% include 'analytics.html' %}
</body>
</html>