17 lines
448 B
HTML
17 lines
448 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Shorty</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', file='style.css') }}">
|
|
</head>
|
|
<body>
|
|
<h1><a href="{{ url_for('new') }}">Shorty</a></h1>
|
|
<div class="body">{% block body %}{% endblock %}</div>
|
|
<div class="footer">
|
|
<a href="{{ url_for('new') }}">new</a> |
|
|
<a href="{{ url_for('list') }}">list</a> |
|
|
use shorty for good, not for evil
|
|
</div>
|
|
</body>
|
|
</html>
|