95 lines
3.4 KiB
HTML
95 lines
3.4 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
{% if page:title %}
|
|
{{ page:title }}
|
|
{% else %}
|
|
{{ site:title }}
|
|
{% endif %}
|
|
</title>
|
|
<link rel="icon" href="/images/favicon.png">
|
|
{% if page.math %}
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
menuSettings: {
|
|
zoom: "Click",
|
|
zscale: "200%"
|
|
},
|
|
tex2jax: {
|
|
inlineMath: [
|
|
['$','$'],
|
|
['\\(','\\)']
|
|
]
|
|
}
|
|
});
|
|
</script>
|
|
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script>
|
|
{% endif %}
|
|
<link rel="stylesheet" href="/stylesheets/screen.css">
|
|
<!--[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>
|
|
<div id="outter-wrapper">
|
|
<div id="wrapper">
|
|
|
|
<header>
|
|
{% if page:header-homelink %}
|
|
{% assign homelink = page:header-homelink %}
|
|
{% else %}
|
|
{% assign homelink = site:header-homelink %}
|
|
{% endif %}
|
|
<h1><a href="{{ homelink }}">
|
|
{% if page:header-title %}
|
|
{{ page:header-title }}
|
|
{% else %}
|
|
{{ site:header-title }}
|
|
{% endif %}
|
|
</a></h1>
|
|
<p>
|
|
{% if page:header-subtitle %}
|
|
{{ page:header-subtitle }}
|
|
{% else %}
|
|
{{ site:header-subtitle }}
|
|
{% endif %}
|
|
</p>
|
|
<hr>
|
|
</header>
|
|
|
|
<section>
|
|
<div id="content">
|
|
{{ content }}
|
|
</div>
|
|
<p class="clear"></p>
|
|
<hr class="clear">
|
|
<footer>
|
|
<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>
|
|
<span class="credits right">Hosted on GitHub Pages — Powered by <a href="http://jekyllrb.com/">Jekyll</a>
|
|
</span>
|
|
</footer>
|
|
</section>
|
|
|
|
</div><!-- wrapper -->
|
|
|
|
<div id="foot_image" title="Interféromètre du plateau de Bure">
|
|
</div>
|
|
|
|
</div>
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-49425219-1', 'janko.fr');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
</body>
|
|
</html>
|