homepage/_layouts/default.html

85 lines
3.1 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>
2018-03-19 22:46:27 +01:00
{% if page.title %}
{{ page.title }}
2013-03-08 13:14:26 +01:00
{% else %}
2018-03-19 22:46:27 +01:00
{{ site.title }}
2013-03-08 13:14:26 +01:00
{% endif %}
</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 %}
2014-01-27 21:52:30 +01:00
<link rel="stylesheet" href="/stylesheets/screen.css">
2015-02-11 16:05:19 +01:00
<link rel="stylesheet" href="/stylesheets/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>
2018-03-19 22:46:27 +01:00
{% assign homelink = site.header-homelink-fr %}
{% assign title = site.header-title-fr %}
{% assign subtitle = site.header-subtitle-fr %}
{% if page.lang == 'en' %}
{% assign homelink = site.header-homelink-en %}
{% assign title = site.header-title-en %}
{% assign subtitle = site.header-subtitle-en %}
2013-03-08 13:14:26 +01:00
{% endif %}
2014-04-15 15:06:31 +02:00
<h1><a href="{{ homelink }}">{{ title }}</a></h1>
<p>{{ subtitle }}</p>
2013-03-08 11:32:41 +01:00
<hr>
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>
<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-03-26 18:16:34 +02:00
<span class="credits right">Generated by <a href="http://jekyllrb.com/">Jekyll</a> @ <a href="https://gitea.oknaj.eu/gjankowiak/homepage">{{ site.time | date_to_long_string }}</a>
2013-11-06 12:00:43 +01:00
</span>
</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>