2014-12-29 23:08:56 +01:00
<!DOCTYPE html>
2015-01-09 19:56:22 +01: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 23:08:56 +01:00
< head >
2017-08-15 01:39:41 +02: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 17:26:55 +01:00
< base href = "{{ SITEURL }}/" > <!-- So that "images/" prefixed URLs are resolved in the same way in pages/ -->
2017-08-15 01:39:41 +02: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-16 00:16:19 +02:00
< link href = "{{ SITEURL }}/{{ FEED_ALL_ATOM }}" type = "application/atom+xml" rel = "alternate" title = "{{ SITENAME }} ATOM Feed" >
2017-12-20 22:49:39 +01:00
{% block meta %}
{% endblock %}
2017-08-15 01:39:41 +02:00
< meta name = "author" content = "{{ AUTHOR }}" >
< meta name = "copyright" content = "{{ AUTHOR }}" >
2017-08-16 00:16:19 +02:00
< meta name = "twitter:card" content = "summary" >
< meta name = "twitter:site" content = "@{{ TWITTER_USERNAME }}" >
< meta property = "og:site_name" content = "{{ SITENAME }}" >
2017-08-15 01:39:41 +02:00
{% block seo %}
2017-08-16 00:16:19 +02: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-15 01:39:41 +02:00
{% if DESCRIPTION %}
2017-08-16 00:16:19 +02:00
< meta property = "og:description" content = "{{ DESCRIPTION }}" >
< meta name = "twitter:description" content = "{{ DESCRIPTION }}" >
< meta itemprop = "description" content = "{{ DESCRIPTION }}" >
2017-08-15 01:39:41 +02:00
{% endif %}
{% if META_IMAGE %}
2017-08-16 00:16:19 +02: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-15 01:39:41 +02:00
{% endif %}
{% endblock %}
2017-12-20 21:55:08 +01:00
< link rel = "stylesheet" type = "text/css" href = "{{SITEURL}}/theme/bundle-SHORTSHA1-b785cd8.css" >
2014-12-29 23:08:56 +01:00
</ head >
< body >
<!--[if lt IE 7]>
2017-08-15 01:39:41 +02: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 21:06:34 +01:00
2017-09-08 17:18:31 +02:00
< header class = "mg-header uk-navbar uk-navbar-attached" >
2014-12-29 23:08:56 +01:00
2017-08-14 03:08:27 +02:00
< div class = "mg-header-content uk-container uk-container-center" >
2014-12-29 23:08:56 +01:00
2017-08-14 03:08:27 +02:00
< div class = "uk-hidden-small" >
2017-11-06 15:08:11 +01: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 03:08:27 +02:00
</ div >
2017-11-06 15:08:11 +01:00
< ul class = "uk-hidden-small mg-skiplinks" >
2017-12-20 21:55:08 +01:00
{% if not DISABLE_SEARCH %}
2017-08-18 12:05:32 +02:00
< li >< a href = "#search-form" > Search form</ a ></ li >
2017-12-20 21:55:08 +01:00
{% endif %}
2017-08-18 12:05:32 +02:00
</ ul >
2017-08-14 22:18:28 +02:00
< div class = "mg-header-extra uk-hidden-small" >
{% block header_extra %}
{% endblock %}
2017-08-14 03:08:27 +02: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 15:08:11 +01:00
< a class = "mg-brand uk-navbar-center" href = "{{ SITEURL }}" > {% if ALT_NAME %}{{ ALT_NAME }}{% else %}{{ SITENAME }}{% endif %}</ a >
2017-08-14 03:08:27 +02:00
</ div >
2014-12-29 23:08:56 +01:00
</ div >
</ header >
2017-09-08 17:18:31 +02:00
< main class = "mg-main" >
2014-12-29 23:08:56 +01:00
< div class = "uk-container uk-container-center" >
< div class = "uk-grid" data-uk-grid-margin >
2015-11-23 18:09:35 +01:00
2014-12-29 23:08:56 +01:00
{% block content %}
2015-11-23 18:09:35 +01:00
{% endblock %}
2017-08-17 20:07:10 +02:00
< div role = "navigation" class = "uk-width-medium-1-5 uk-hidden-small" >
2015-11-23 18:09:35 +01:00
2017-11-14 15:12:18 +01: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 15:26:47 +02:00
{% if SOCIAL %}
2015-01-09 00:10:05 +01:00
< div class = "uk-panel uk-panel-box" >
2017-08-18 10:47:33 +02:00
< h2 class = "uk-panel-title" > Ubiquité</ h2 >
2017-08-17 20:07:10 +02: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 15:26:47 +02:00
</ a >
{% endfor %}
2015-01-09 00:10:05 +01:00
</ div >
2015-11-07 11:43:39 -08:00
{% endif %}
2015-01-09 00:10:05 +01:00
2017-11-14 15:12:18 +01:00
{% if READINGS %}
< 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 >
{% endif %}
2014-12-29 23:08:56 +01:00
< div class = "uk-panel uk-panel-box" >
< ul class = "uk-nav uk-nav-side" >
2017-08-09 02:11:13 +02:00
{% if CATEGORY_SAVE_AS %}
2014-12-29 23:08:56 +01: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 02:11:13 +02:00
{% endif %}
2017-08-15 15:26:47 +02:00
2014-12-29 23:08:56 +01:00
{% if DISPLAY_PAGES_ON_MENU != False %}
< li class = "uk-nav-header" > Pages</ li >
2017-01-31 12:01:43 -05:00
{% for p in pages %}
2014-12-29 23:08:56 +01:00
< li {% if p = = page %} class = "uk-active" {% endif %} >
< a href = "{{ SITEURL }}/{{ p.url }}" > {{ p.title }}</ a >
</ li >
{% endfor %}
{% endif %}
2017-08-09 02:11:13 +02:00
{% if ARCHIVE_SAVE_AS %}
2014-12-29 23:08:56 +01:00
< li class = "uk-nav-divider" ></ li >
2015-01-01 01:19:43 +01:00
< li {% if page_name = = ' archives ' %} class = "uk-active" {% endif %} >< a href = "{{ SITEURL }}/archives.html" > Archives</ a ></ li >
2017-08-09 02:11:13 +02:00
{% endif %}
2014-12-29 23:08:56 +01:00
</ ul >
</ div >
2017-08-15 15:26:47 +02:00
{% if not DISABLE_SEARCH %}
2017-12-20 21:55:08 +01:00
< iframe src = "https://duckduckgo.com/search.html?site={{ SITEURL }}&prefill=Search" class = "duckduckgo" frameborder = "0" ></ iframe >
2017-08-15 15:26:47 +02:00
{% endif %}
2015-11-23 18:09:35 +01:00
2017-08-10 02:00:49 +02: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 23:08:56 +01:00
{% endif %}
</ div >
</ div >
</ div >
</ main >
2017-09-08 17:19:36 +02:00
< footer class = "mg-footer" >
2014-12-29 23:08:56 +01:00
< div class = "uk-container uk-container-center uk-text-center" >
2017-08-09 02:11:13 +02:00
< ul class = "mg-icons-small uk-subnav uk-visible-small" >
2015-01-01 21:06:34 +01: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 13:18:41 +01: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 23:08:56 +01:00
{% if SOCIAL %}
2017-08-17 20:07:10 +02:00
{% for link_destination, link in SOCIAL %}
2014-12-29 23:08:56 +01:00
< li >
2017-08-17 20:07:10 +02: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 23:08:56 +01:00
</ li >
{% endfor %}
{% endif %}
2017-08-09 02:11:13 +02:00
</ ul >
2014-12-29 23:08:56 +01:00
< div class = "mg-author uk-panel" >
< p > {{ FOOTER }}</ p >
2017-08-15 19:43:05 +02: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 23:08:56 +01:00
</ div >
2015-11-23 18:09:35 +01:00
</ div >
2014-12-29 23:08:56 +01:00
</ footer >
2017-08-10 02:11:45 +02:00
< aside id = "mg-offcanvas" class = "uk-offcanvas" >
2014-12-29 23:08:56 +01:00
< div class = "uk-offcanvas-bar" >
2015-01-09 00:10:05 +01:00
2015-11-07 11:43:39 -08:00
{% if not DISABLE_SEARCH %}
2017-12-20 21:55:08 +01:00
< iframe src = "https://duckduckgo.com/search.html?site={{ SITEURL }}&prefill=Search" class = "duckduckgo" frameborder = "0" ></ iframe >
2015-11-07 11:43:39 -08:00
{% endif %}
2015-01-09 00:10:05 +01:00
2014-12-29 23:08:56 +01:00
< ul class = "uk-nav uk-nav-offcanvas" data-uk-nav >
2017-08-10 02:11:45 +02:00
{% if CATEGORY_SAVE_AS %}
2014-12-29 23:08:56 +01: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 02:11:45 +02:00
{% endif %}
2014-12-29 23:08:56 +01:00
{% if DISPLAY_PAGES_ON_MENU != False %}
2015-11-23 18:09:35 +01:00
< li class = "uk-nav-header" > Pages</ li >
2017-01-31 12:01:43 -05:00
{% for p in pages %}
2014-12-29 23:08:56 +01:00
< li {% if p = = page %} class = "uk-active" {% endif %} >
< a href = "{{ SITEURL }}/{{ p.url }}" > {{ p.title }}</ a >
</ li >
{% endfor %}
{% endif %}
2017-08-10 02:11:45 +02:00
{% if ARCHIVE_SAVE_AS %}
2014-12-29 23:08:56 +01:00
< li class = "uk-nav-divider" ></ li >
< li >< a href = "{{ SITEURL }}/{{ ARCHIVES_URL }}" > Archives</ a ></ li >
2017-08-10 02:11:45 +02: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 20:36:09 +02:00
< li >< a href = "{{ link }}" >
2017-08-10 02:11:45 +02:00
< img class = "mg-support-logo" src = "{{ logo_url }}" alt = "Logo {{ name }}" title = "{{ title }}" >
2017-08-13 20:36:09 +02:00
</ a ></ li >
2017-08-10 02:11:45 +02:00
{% endfor %}
{% endif %}
2014-12-29 23:08:56 +01:00
</ ul >
</ div >
2017-08-10 02:11:45 +02:00
</ aside >
2014-12-29 23:08:56 +01:00
2017-12-20 21:55:08 +01: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-004a392.js" ></ script >
2014-12-29 23:08:56 +01:00
{% include 'disqus_count.html' %}
{% include 'analytics.html' %}
</ body >
</ html >