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 >
2017-08-14 23:39:41 +00:00
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2017-12-03 16:26:55 +00:00
< base href = "{{ SITEURL }}/" > <!-- So that "images/" prefixed URLs are resolved in the same way in pages/ -->
2017-08-14 23:39:41 +00:00
< 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" >
2017-12-20 21:49:39 +00:00
{% block meta %}
{% endblock %}
2017-08-14 23:39:41 +00:00
< 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 }}" >
2017-08-14 23:39:41 +00:00
{% 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 }}" >
2017-08-14 23:39:41 +00:00
{% 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 }}" >
2017-08-14 23:39:41 +00:00
{% 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 }}" >
2017-08-14 23:39:41 +00:00
{% endif %}
{% endblock %}
2019-03-07 15:49:34 +00:00
< link rel = "stylesheet" type = "text/css" href = "{{SITEURL}}/theme/bundle-SHORTSHA1-1f5d92e.css" >
2014-12-29 22:08:56 +00:00
< / head >
< body >
<!-- [if lt IE 7]>
2017-08-14 23:39:41 +00:00
< 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
2017-08-14 01:08:27 +00:00
< div class = "mg-header-content uk-container uk-container-center" >
2014-12-29 22:08:56 +00:00
2017-08-14 01:08:27 +00:00
< div class = "uk-hidden-small" >
2017-11-06 14:08:11 +00:00
< a class = "mg-brand" href = "{{ SITEURL }}" > {% block header_text %}{% if ALT_NAME %}{{ ALT_NAME }}{% else %}{{ SITENAME }}{% endif %}{% endblock %}< / a >
< div class = "mg-tagline" > {% if SITESUBTITLE %}{{ SITESUBTITLE }}{% endif %}< / div >
2017-08-14 01:08:27 +00:00
< / div >
2017-11-06 14:08:11 +00:00
< ul class = "uk-hidden-small mg-skiplinks" >
2017-12-20 20:55:08 +00:00
{% if not DISABLE_SEARCH %}
2017-08-18 10:05:32 +00:00
< li > < a href = "#search-form" > Search form< / a > < / li >
2017-12-20 20:55:08 +00:00
{% endif %}
2017-08-18 10:05:32 +00:00
< / ul >
2017-08-14 20:18:28 +00:00
< div class = "mg-header-extra uk-hidden-small" >
{% block header_extra %}
{% endblock %}
2017-08-14 01:08:27 +00:00
< / 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 >
2017-11-06 14:08:11 +00:00
< a class = "mg-brand uk-navbar-center" href = "{{ SITEURL }}" > {% if ALT_NAME %}{{ ALT_NAME }}{% else %}{{ SITENAME }}{% endif %}< / a >
2017-08-14 01:08:27 +00:00
< / 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 %}
2017-08-17 18:07:10 +00:00
< div role = "navigation" class = "uk-width-medium-1-5 uk-hidden-small" >
2015-11-23 17:09:35 +00:00
2017-11-14 14:12:18 +00:00
< div class = "uk-panel uk-panel-box" >
< h3 class = "uk-panel-title" > Syndication< / 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 >
{% if EXTRA_ATOM_FEED %}< a rel = "alternate" type = "application/atom+xml" href = "{{ EXTRA_ATOM_FEED['url'] }}" class = "mg-feed" > < i class = "uk-icon-rss uk-icon-medium" > < / i > {{ EXTRA_ATOM_FEED['name'] }}< / a > {% endif %}
< / div >
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 >
2017-08-17 18:07:10 +00:00
{% 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
2018-03-08 17:09:39 +00:00
{% if AVATARS %}
< div class = "uk-panel uk-panel-box" >
< h2 class = "uk-panel-title" > Avatars< / h2 >
{% for img_uri in AVATARS %}
< img class = "mg-avatar" src = "{{ img_uri }}" alt = "An avatar I use on the web" title = "An avatar I use on the web" >
{% endfor %}
< / div >
{% endif %}
2017-11-14 14:12:18 +00:00
{% if READINGS %}
2018-04-24 19:47:44 +00:00
< a href = "{{ SITEURL }}/past_readings.html" >
< div class = "uk-panel uk-panel-box" >
< h2 class = "uk-panel-title" > En ce moment je lis< / h2 >
< img class = "uk-thumbnail" src = "{{ READINGS[0]['img_url'] }}" alt = "{{ READINGS[0]['description'] }}" title = "{{ READINGS[0]['description'] }}" >
< / div >
< / a >
2017-11-14 14:12:18 +00:00
{% endif %}
2014-12-29 22:08:56 +00:00
< div class = "uk-panel uk-panel-box" >
< ul class = "uk-nav uk-nav-side" >
2017-08-09 00:11:13 +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-09 00:11:13 +00:00
{% 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 >
2017-01-31 17:01:43 +00:00
{% 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-09 00:11:13 +00:00
{% 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 >
2017-08-09 00:11:13 +00:00
{% endif %}
2014-12-29 22:08:56 +00:00
< / ul >
< / div >
2017-08-15 13:26:47 +00:00
{% if not DISABLE_SEARCH %}
2017-12-20 21:53:14 +00:00
< iframe src = "https://duckduckgo.com/search.html?site={{ SITEURL }}&prefill=Search" class = "duckduckgo" > < / iframe >
2017-08-15 13:26:47 +00:00
{% endif %}
2015-11-23 17:09:35 +00:00
2017-08-10 00:00:49 +00:00
{% 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" >
2017-08-09 00:11:13 +00:00
< 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 >
2017-11-07 12:18:41 +00:00
{% if EXTRA_ATOM_FEED %}< li > < a rel = "alternate" type = "application/atom+xml" href = "{{ EXTRA_ATOM_FEED['url'] }}" class = "uk-icon-button uk-icon-rss" > < / a > < / li > {% endif %}
2014-12-29 22:08:56 +00:00
{% if SOCIAL %}
2017-08-17 18:07:10 +00:00
{% for link_destination, link in SOCIAL %}
2014-12-29 22:08:56 +00:00
< li >
2017-08-17 18:07:10 +00:00
< 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 %}
2017-08-09 00:11:13 +00:00
< / 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-12-20 21:53:14 +00:00
< iframe src = "https://duckduckgo.com/search.html?site={{ SITEURL }}&prefill=Search" class = "duckduckgo" > < / iframe >
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 >
2017-01-31 17:01:43 +00:00
{% 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
2019-02-13 19:13:31 +00:00
< script src = "{{SITEURL}}/theme/bundle-SHARE-{{SHARE|string|first|length|string|first}}-MG_FILTER_TAGS-{{MG_FILTER_TAGS|string|first|length|string|first}}-SHORTSHA1-12d0265.js" > < / script >
2014-12-29 22:08:56 +00:00
{% include 'disqus_count.html' %}
{% include 'analytics.html' %}
< / body >
< / html >