2014-11-30 23:17:02 +01:00
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<meta name="viewport" content="width=device-width initial-scale=1">
|
|
|
|
|
|
|
|
|
|
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
|
|
|
|
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
|
|
|
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
|
|
|
|
|
|
2014-12-01 00:39:03 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="/bower_components/bootstrap/dist/css/bootstrap.min.css"/>
|
2014-12-19 22:50:16 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="/bower_components/vegas/dist/jquery.vegas.min.css"/>
|
|
|
|
|
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
|
|
|
|
|
<link rel="stylesheet" href="{{ "/css/custom.css" | prepend: site.baseurl }}">
|
|
|
|
|
|
2014-12-01 00:39:03 +01:00
|
|
|
<script type="text/javascript" src="/bower_components/jquery/dist/jquery.min.js"></script>
|
|
|
|
|
<script src="/bower_components/bootstrap/dist/js/bootstrap.min.js" type="text/javascript"></script>
|
2014-12-19 22:50:16 +01:00
|
|
|
<script src="/bower_components/vegas/dist/jquery.vegas.min.js" type="text/javascript"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
var rnd=Math.floor(Math.random()*4);
|
|
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
|
$.vegas({
|
|
|
|
|
src:'/assets/bgphotos/'+rnd+'.png'
|
|
|
|
|
});
|
|
|
|
|
$.vegas('overlay', {
|
|
|
|
|
src:'/assets/bgphotos/overlay.png'
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2014-11-30 23:17:02 +01:00
|
|
|
|
|
|
|
|
</head>
|