homepage/_layouts/default.html

89 lines
3.3 KiB
HTML
Raw Normal View History

2013-02-24 17:01:24 +01:00
<!doctype html>
2018-03-19 22:46:27 +01:00
{% if page.lang %}
<html lang="{{ page.lang }}">
2014-04-15 15:06:31 +02:00
{% else %}
<html lang="fr">
{% endif %}
2013-02-24 17:01:24 +01:00
<head>
<meta charset="utf-8">
2013-03-08 13:14:26 +01:00
<title>
2019-03-22 12:33:22 +01:00
{{ page.page_title }}
2013-03-08 13:14:26 +01:00
</title>
2013-02-24 19:23:51 +01:00
<link rel="icon" href="/images/favicon.png">
2013-07-18 14:53:14 +02:00
{% if page.math %}
2013-02-26 10:20:14 +01:00
<script type="text/x-mathjax-config">
2013-06-29 15:58:46 +02:00
MathJax.Hub.Config({
menuSettings: {
zoom: "Click",
zscale: "200%"
},
tex2jax: {
inlineMath: [
['$','$'],
['\\(','\\)']
]
}
});
2013-02-26 10:20:14 +01:00
</script>
2018-03-26 18:16:16 +02:00
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.3/latest.js?config=TeX-AMS-MML_HTMLorMML' async></script>
2013-07-18 14:53:14 +02:00
{% endif %}
2018-10-04 16:16:16 +02:00
<link rel="stylesheet" href="/css/screen.css">
<link rel="stylesheet" href="/css/friendly.css">
2013-02-24 17:01:24 +01:00
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="stylesheets/ie.css">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
2013-03-08 11:32:41 +01:00
<div id="outter-wrapper">
2014-01-27 21:52:30 +01:00
<div id="wrapper">
2013-02-24 17:01:24 +01:00
2014-01-27 21:52:30 +01:00
<header>
2019-03-22 12:33:22 +01:00
<h1><a href="{{ page.homelink }}">{{ page.title }}</a></h1>
2014-01-27 21:52:30 +01:00
</header>
2013-03-08 11:32:41 +01:00
2014-01-27 21:52:30 +01:00
<section>
2019-03-22 12:33:22 +01:00
{% if page.lang == 'en' %}
{% if page.fr_url == '' %}
2020-10-28 09:23:50 +01:00
<p class="switcher"><a href="{{ page.url | remove_first: '/en' }}">🇫🇷</a></p>
2019-03-22 12:33:22 +01:00
{% else %}
2020-10-28 09:23:50 +01:00
<p class="switcher"><a href="{{ page.fr_url }}">🇫🇷</a></p>
2019-03-22 12:33:22 +01:00
{% endif %}
{% include nav_en.html %}
{% else %}
{% if page.en_url == '' %}
2020-10-28 09:23:50 +01:00
<p class="switcher"><a href="/en{{page.url}}">🇬🇧</a></p>
2019-03-22 12:33:22 +01:00
{% else %}
2020-10-28 09:23:50 +01:00
<p class="switcher"><a href="{{ page.en_url }}">🇬🇧</a></p>
2019-03-22 12:33:22 +01:00
{% endif %}
{% include nav_fr.html %}
{% endif %}
<hr>
<div id="page_subtitle">{{ page.subtitle }}</div>
2014-01-27 21:52:30 +01:00
<div id="content">
2013-03-08 11:32:41 +01:00
{{ content }}
2013-07-18 15:37:08 +02:00
</div>
2014-01-27 21:52:30 +01:00
<p class="clear"></p>
2013-06-29 15:58:46 +02:00
<hr class="clear">
2013-11-06 12:00:43 +01:00
<footer>
2014-03-23 19:33:38 +01:00
<span class="credits left"><a href="http://validator.w3.org/check?uri=http%3A%2F%2Fgaspard.janko.fr{{ page.url | cgi_escape }}">Validate</a> HTML</span>
2018-10-04 16:18:37 +02:00
<span class="credits right">Generated on <a href="https://gitea.oknaj.eu/gjankowiak/homepage">{{ site.time | date_to_long_string }}</a> with <a href="http://jekyllrb.com/">Jekyll</a></span>
2013-11-06 12:00:43 +01:00
</footer>
2013-03-08 11:32:41 +01:00
</section>
2013-02-24 17:01:24 +01:00
2013-03-08 11:32:41 +01:00
</div><!-- wrapper -->
2014-09-06 19:27:35 +02:00
<div id="foot_image" title="Le Dévoluy, depuis le Mont Aiguille">
2014-09-24 13:04:09 +02:00
<img width="900" height="150" alt="devoluy" src="/images/devoluy.png">
<img width="15" height="18" alt="skier" id="ski" src="/images/ski.png">
2014-09-06 19:27:35 +02:00
<div id="clouds"></div>
2013-03-08 11:32:41 +01:00
</div>
2013-02-24 17:01:24 +01:00
</div>
2014-01-27 21:52:30 +01:00
</body>
2013-02-24 17:01:24 +01:00
</html>