Diary/templates/diary.html

23 lines
495 B
HTML
Raw Normal View History

2014-05-25 13:45:54 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Diary {{ diary.name }}</title>
<link rel="stylesheet" href="{{ url_for('static',filename='style.css') }}"/>
<script src="{{ url_for('static',filename='script.js') }}"></script>
</head>
<body>
<p>{{ diary.name }}:</p>
<div>
{% for e in entries %}
<p>
{{ e.date }}:
<p>
{{ e.text }}
</p>
</p>
{% endfor %}
</div>
</body>
</html>