homepage/_layouts/default.html

87 lines
2.9 KiB
HTML
Raw Normal View History

2013-02-24 17:01:24 +01:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2013-03-08 13:14:26 +01:00
<title>
{% if page:title %}
{{ page:title }}
{% else %}
{{ site:title }}
{% 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>
2013-02-24 21:41:51 +01:00
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </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">
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>
2013-03-08 13:14:26 +01:00
{% 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>
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>
<span class="credits left"><a href="http://validator.w3.org/check?uri=http%3A%2F%2Fgjankowiak.github.com{{ page.url | cgi_escape }}">Validate</a> HTML</span>
2014-01-27 21:52:30 +01:00
<span class="credits right">Hosted on GitHub Pages &mdash; Powered by <a href="http://jekyllrb.com/">Jekyll</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 -->
<div id="foot_image" title="Interf&eacute;rom&egrave;tre du plateau de Bure">
</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>