A Minimalistic and Privary-by-default URL sortener
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

43 lines
1.1 KiB

<!doctype html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Journalmarks</title>
<link rel=stylesheet type=text/css href="{{ url_for('journalmarks.static', filename='style.css') }}">
<link rel=stylesheet type=text/css href="{{ url_for('journalmarks.static', filename='pure-min.css') }}">
<link rel=stylesheet type=text/css href="{{ url_for('journalmarks.static', filename='grids-responsive-min.css') }}">
<script src="{{ url_for('journalmarks.static', filename='journalmarks.js') }}"></script>
<script src="{{ url_for('journalmarks.static', filename='base64js.min.js') }}"></script>
<style>
body {
font-weight: 100;
}
h1 {
text-align: center;
font-weight: normal;
}
a, a:visited {
text-decoration: none;
color: #0078e7;
}
a:hover {
text-decoration: underline;
}
#content {
padding: 0.3em;
}
.errmsg {
display: none;
color: #ab0000;
}
</style>
{% block script %}{% endblock %}
<div class="pure-g">
<div class="pure-u-1 pure-u-lg-1-3"></div>
<div id="content" class="pure-u-1 pure-u-lg-1-3">
{% block body %}{% endblock %}
</div>
</div>