Newer
Older
postorius / templates / mailman-django / base.html
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
  4. <head>
  5. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  6. <title>Mailman</title>
  7.  
  8. <link rel="stylesheet" href="/mailman-django/css/layout.css" type="text/css" charset="utf-8" />
  9.  
  10. <script type="text/javascript" src="/mailman-django/js/lib/jquery-1.4.2.min.js"></script>
  11. <script type="text/javascript" src="/mailman-django/js/app/jquery.mm_fieldsets.js"></script>
  12. <script type="text/javascript" src="/mailman-django/js/app/documentready.js"></script>
  13.  
  14. </head>
  15.  
  16. <body>
  17.  
  18. <div id="page">
  19.  
  20. <a id="logo" href="{% url list_index %}"></a>
  21.  
  22. <div id="content">
  23. <p>This is a draft of a Mailman3 django client. It's not a finished design. For now you can view a <a href="{% url list_index %}">list</a> of existing mailing lists and you can <a href="{% url list_new %}">create</a> new lists.
  24. {% block links %}{% endblock %}
  25. </p>
  26.  
  27. {% block content %}{% endblock %}
  28.  
  29. </div>
  30. </div>
  31.  
  32.  
  33.  
  34. </body>
  35. </html>