plint

French poetry validator (local mirror of https://gitlab.com/a3nm/plint)
git clone https://a3nm.net/git/plint/
Log | Files | Refs | README

page.html (1474B)


      1 <!DOCTYPE html>
      2 <html dir="ltr" lang="en-US">
      3   <head>
      4     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
      5     <title>{{ title }}</title>
      6 {% if lang == 'fr' %}
      7     <meta name="description" content="vérificateur de poèmes plint" />
      8 {% else %}
      9     <meta name="description" content="plint French poetry checker" />
     10 {% endif %}
     11     <meta name="viewport" content="width=device-width, initial-scale=1" />
     12     <link rel="stylesheet" href="/static/main.css" type="text/css" media="screen" />
     13     <link rel="stylesheet" media="(max-width: 650px)" href="/static/mobile.css" />
     14     <script type="text/javascript">
     15       var lang = "{{ lang }}";
     16     </script>
     17     <script type="text/javascript" src="/static/jquery-1.10.2.min.js"></script>
     18     <script type="text/javascript" src="/static/jquery.caret.js"></script>
     19     <script type="text/javascript" src="/static/script.js"></script>
     20   </head>
     21   <body>
     22     <header>
     23     <h1><a href="/">plint</a></h1>
     24     <sup><a class="headlink"
     25         href="about">{% if lang == 'fr' %}aide{% else %}help{% endif %}</a>&nbsp;&bull;&nbsp;<a 
     26         class="headlink"
     27         href="about#log">{% if lang == 'fr' %}vie privée{% else %}privacy{% endif %}</a></sup>
     28     {% if nolocale != True %}
     29     <div id="lang">
     30       <a href="/fr/{{path}}">fr</a>&nbsp;&bull;&nbsp;<a href="/en/{{path}}">en</a>
     31     </div>
     32     {% endif %}
     33     </header>
     34 
     35     <div id="body">
     36     {% block body %}
     37     {% endblock %}
     38     </div>
     39   </body>
     40 </html>