🐙 Templated web page generator for your git repositories
git clone https://github.com/m-col/gitja
Files | Refs | Readme | License

-rw-r--r-- templates/stagit/template.html.include


      1 {#- This is the base template used for all pages. -#}
      2 {#- Style credit goes to stagit. -#}
      3 
      4 <!doctype html>
      5 <html lang="en">
      6   <head>
      7     <meta charset="utf-8">
      8     <meta http-equiv="x-ua-compatible" content="ie=edge">
      9     <meta name="viewport" content="width=device-width, initial-scale=1">
     10     <title>{% block title %}{% endblock %}</title>
     11     <link rel="stylesheet" type="text/css" href="{{ host }}/style.css"/>
     12     <link rel="icon" type="image/png" href="/favicon.png"/>
     13   </head>
     14   <body>
     15 
     16   {% block body %}
     17   {% endblock %}
     18   </body>
     19 </html>
     20