Newer
Older
postorius / templates / mailman-django / base.html
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>    <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>    <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>    <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
	<meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

	<title>Mailman</title>
	<meta name="description" content="">
	<meta name="author" content="">

	<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">

	<link rel="shortcut icon" href="/favicon.ico">
	<!--link rel="apple-touch-icon" href="/apple-touch-icon.png"-->

	<link rel="stylesheet" type="text/css" href="/static/mailman_django/css/style.css?v=1">
	<link rel="stylesheet" type="text/css" media="handheld" href="/static/mailman_django/css/handheld.css?v=1">

	<script src="/static/mailman_django/js/lib/modernizr-1.5.min.js"></script>
</head>

<body>

	<div id="page">

        <a id="logo" href="{% url list_index %}"></a>

		<div id="content">
			<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. 
			{% block links %}{% endblock %}
			</p>

            
        	{% block content %}{% endblock %}

		</div>
    </div>


	<script type="text/javascript" src="/static/mailman_django/js/lib/jquery-1.4.2.min.js"></script>
	<script type="text/javascript" src="/static/mailman_django/js/plugins.js?v=1"></script>
	<script type="text/javascript" src="/static/mailman_django/js/script.js?v=1"></script>
    <!--[if lt IE 7 ]>
        <script src="js/dd_belatedpng.js?v=1"></script>
    <![endif]-->

</body>
</html>