]> git.r.bdr.sh - rbdr/r.bdr.sh/blob - jekyll/_layouts/default.html
Merge branch 'hotfix/3.0.0' into develop
[rbdr/r.bdr.sh] / jekyll / _layouts / default.html
1 <!DOCTYPE HTML>
2
3 <html>
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6 <meta charset="utf-8" />
7 <meta name="author" content="Rubén Beltrán del Río" />
8 <meta name="description" content="{{ page.description }}" />
9 <link rel="stylesheet" type="text/css" href="/css/application.css" />
10 <title>Unlimited &#127829; {{ page.title }}</title>
11 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
12 <script src="https://cdn.firebase.com/js/client/1.0.21/firebase.js"></script>
13
14 <script src="/js/vendor/neon/neon.js"></script>
15 <script src="/js/vendor/neon/stdlib/node_support.js"></script>
16 <script src="/js/vendor/neon/stdlib/custom_event.js"></script>
17 <script src="/js/vendor/neon/stdlib/custom_event_support.js"></script>
18 <script src="/js/vendor/neon/stdlib/widget.js"></script>
19
20 <script src="/js/vendor/recorderjs/recorder.js"></script>
21 <script src="/js/vendor/recorderjs/recorderWorker.js"></script>
22
23 <!--
24 /\
25 / O\ The Unlimited Pizza Family's Own Libraries
26 /O o \ * Melty Cheese: *DESTROYED, NEED NEW*
27 |______| * Pepperoni: Audio Recorder Widget
28 * Tasty Crust: *RESTROYED, NEED NEW*
29 * Tomato Sauce: Random Telnet Renderer
30 -->
31 <script src="js/unlimited_pizza.js"></script>
32 <script src="js/unlimited_pizza/pepperoni.js"></script>
33 <script type="text/javascript">
34
35 window.addEventListener('load', function () {
36 UnlimitedPizza.instance({
37 element : $('body')
38 }).activate();
39 });
40
41 var _gaq = _gaq || [];
42 _gaq.push(['_setAccount', 'UA-20018878-4']);
43 _gaq.push(['_trackPageview']);
44
45 (function() {
46 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
47 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
48 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
49 })();
50
51 </script>
52 </head>
53 <body>
54 <h1>
55 <a class="logo" href="/">Unlimited 🍕 Pizza</a>
56 </h1>
57 <div class="main-container">
58 <section>
59 {{ content }}
60 </section>
61 </div>
62 </body>
63 </html>