| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html class="no-js"> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| 6 <title>{{ name }}</title> | |
| 7 <meta name="description" content="{{ description }}"> | |
| 8 <meta name="keywords" content="{{ keywords }}"> | |
| 9 <meta name="viewport" content="width=device-width"> | |
| 10 <meta property="og:title" content="{{ name }}"> | |
| 11 <meta property="og:url" content="{{ url }}"> | |
| 12 <meta property="og:description" content="{{ description }}"> | |
| 13 <meta property="og:type" content="website"> | |
| 14 <link rel="stylesheet" href="{{ env.config.baseUrl }}styles/main.css"> | |
| 15 <script> | |
| 16 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
| 17 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o
), | |
| 18 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a
,m) | |
| 19 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | |
| 20 ga('create', 'UA-41063995-1', 'jnordberg.github.io'); | |
| 21 ga('send', 'pageview'); | |
| 22 </script> | |
| 23 {% block scripts %}{% endblock %} | |
| 24 </head> | |
| 25 <body> | |
| 26 <header> | |
| 27 <h1>gif.js</h1> | |
| 28 <p>{{ description }}</p> | |
| 29 <p class="github"><a href="https://github.com/jnordberg/gif.js">Download &am
p; Docs on GitHub</a></p> | |
| 30 </header> | |
| 31 <div class="wrap"> | |
| 32 {% block body %}{% endblock %} | |
| 33 </div> | |
| 34 <footer> | |
| 35 <a href="https://creativecommons.org/licenses/by-sa/3.0/">©©</a> 2
013 | |
| 36 <a href="http://johan-nordberg.com/">Johan Nordberg</a> | |
| 37 </footer> | |
| 38 </body> | |
| 39 </html> | |
| OLD | NEW |