homepage/_layouts/default.html

101 lines
3.7 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 %}
2013-02-24 19:10:28 +01:00
<script src="/javascripts/respond.js"></script>
2013-03-07 11:15:29 +01:00
<link rel="stylesheet" href="/stylesheets/styles_{{ site.style }}.css">
2013-02-26 10:20:14 +01:00
<link rel="stylesheet" href="/stylesheets/pygment_trac.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">
<div class="wrapper">
2013-02-24 17:01:24 +01:00
2013-03-08 11:32:41 +01:00
<section>
<div id="title">
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>
</div>
2013-07-18 15:37:08 +02:00
<div id="content">
2013-03-08 11:32:41 +01:00
{{ content }}
2013-06-29 15:58:46 +02:00
2013-07-18 15:37:08 +02:00
</div>
2013-06-29 15:58:46 +02:00
<hr class="clear">
<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>
2013-03-08 11:32:41 +01:00
<span class="credits right">Hosted on GitHub Pages &mdash; Theme derived from <a href="http://twitter.com/#!/michigangraham">mattgraham</a> &mdash;
Powered by <a href="http://jekyllrb.com/">Jekyll</a>
</span>
</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>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-38752691-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>