rstpreview/src/rstpreview/templates/index.html.j2

61 lines
1.3 KiB
Django/Jinja

{#- vim: set sw=2 ts=2 sts=2 et : -#}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>RstPreview</title>
<meta charset="UTF-8" />
<link type="text/css" rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/foundation/5.5.1/css/normalize.min.css" />
<link type="text/css" rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/foundation/5.5.1/css/foundation.min.css" />
<link type="text/css" rel="stylesheet"
href="{{ static('style/pygments.css') }}" />
<style type="text/css">
/* <![CDATA[ */
textarea {
font-family: monospace;
resize: vertical;
}
pre {
font-size: smaller;
}
.row {
max-width: 100%;
}
/* ]]> */
</style>
</head>
<body>
<header class="row">
<h1 class="site-title">RstPreview</h1>
</header>
<div class="row">
<section class="medium-6 columns">
<form method="post" action="">
<textarea name="content" rows="20">
{% if content|d -%}
{{ content|escape }}
{% endif -%}
</textarea>
<div class="text-right">
<button type="submit" class="tiny button">Preview</button>
</div>
</form>
</section>
<section class="medium-6 columns">
{{ preview|d('') }}
</section>
</div>
<footer class="row text-center"
style="border-top: 1px solid #cccccc; font-size: 0.75em;">
<a href="https://bitbucket.org/AdmiralNemo/rstpreview">RstPreview</a> |
Copyright © 2015 Dustin C. Hatch
</footer>
</body>
</html>