git.fiddlerwoaroof.com
twig/layout.twig
489b3d20
 <!DOCTYPE html>
 <html lang="en">
     <head>
         <meta charset="UTF-8" />
         <title>{% block title %}Welcome!{% endblock %}</title>
         <link rel="stylesheet" type="text/css" href="{{ app.request.basepath }}/themes/{{ app.theme }}/css/style.css">
         <link rel="apple-touch-icon" sizes="57x57" href="/themes/ed/img/apple-touch-icon-57x57.png">
         <link rel="apple-touch-icon" sizes="114x114" href="/themes/ed/img/apple-touch-icon-114x114.png">
         <link rel="apple-touch-icon" sizes="72x72" href="/themes/ed/img/apple-touch-icon-72x72.png">
         <link rel="apple-touch-icon" sizes="144x144" href="/themes/ed/img/apple-touch-icon-144x144.png">
         <link rel="apple-touch-icon" sizes="60x60" href="/themes/ed/img/apple-touch-icon-60x60.png">
         <link rel="apple-touch-icon" sizes="120x120" href="/themes/ed/img/apple-touch-icon-120x120.png">
         <link rel="apple-touch-icon" sizes="76x76" href="/themes/ed/img/apple-touch-icon-76x76.png">
         <link rel="apple-touch-icon" sizes="152x152" href="/themes/ed/img/apple-touch-icon-152x152.png">
         <link rel="apple-touch-icon" sizes="180x180" href="/themes/ed/img/apple-touch-icon-180x180.png">
         <link rel="icon" type="image/png" href="/themes/ed/img/favicon-192x192.png" sizes="192x192">
         <link rel="icon" type="image/png" href="/themes/ed/img/favicon-160x160.png" sizes="160x160">
         <link rel="icon" type="image/png" href="/themes/ed/img/favicon-96x96.png" sizes="96x96">
         <link rel="icon" type="image/png" href="/themes/ed/img/favicon-16x16.png" sizes="16x16">
         <link rel="icon" type="image/png" href="/themes/ed/img/favicon-32x32.png" sizes="32x32">
         <link rel="icon" type="image/png" href="/themes/ed/img/favicon-48x48.png" sizes="48x48">
         <link rel="shortcut icon" href="/themes/ed/img/favicon.ico">
         <meta name="msapplication-TileColor" content="#6fc8d4">
         <meta name="msapplication-TileImage" content="/themes/ed/img/mstile-144x144.png">
         <meta name="msapplication-config" content="/themes/ed/img/browserconfig.xml">
         <!--[if lt IE 9]>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/html5.js"></script>
         <![endif]-->
         <script>
            (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
            })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 
            ga('create', 'UA-55883111-1', 'auto');
            ga('send', 'pageview');
 
         </script>
     </head>
 
     <body>
         {% block body %}{% endblock %}
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/jquery.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/raphael.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/bootstrap.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/codemirror.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/commonlisp.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/showdown.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/table.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/list.min.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/main.js"></script>
         <script src="{{ app.request.basepath }}/themes/{{ app.theme }}/js/networkGraph.js"></script>
     </body>
 </html>