Home | History | Annotate | Download | only in templates
      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
      2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      4   <head>
      5     <link rel="stylesheet" href="/static/style.css" />
      6     <title>{% block title %}Automation Dashboard{% endblock %}</title>
      7   </head>
      8 
      9   <body>
     10     <div class="header">
     11       {% block header %}
     12       <p class="title">Automation Dashboard</p>
     13       {% endblock %}
     14     </div>
     15 
     16     <div class="links">
     17       <span>Subpages:</span>
     18       {% block links %}
     19         {% for link in links %}
     20           <a class="button" href="{{ link.href }}">{{ link.name }}</a>
     21         {% endfor %}
     22       {% endblock %}
     23     </div>
     24 
     25     <div class="content">
     26       {% block content %}
     27       {% endblock %}
     28     </div>
     29   </body>
     30 </html>
     31