-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 978 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
</head>
<body>
<H3>Welcome to Bob's Guest Book</H3>
This was created as part of my <a href="http://rdn-consulting.com/blog/2009/02/07/exploring-cloud-computing-development">Exploring Cloud Computing Development</a> post.<br><br>
<a href="{{ url }}">{{ url_linktext }}</a><br><br>
<strong>Enter a comment:</strong><br>
<form action="/sign" method="post">
<div><textarea name="content" rows="3" cols="60"></textarea></div>
<div><input type="submit" value="Sign Guestbook"></div>
</form>
<strong>Comments:</strong><br><br>
{% for greeting in greetings %}
On {{ greeting.DateTimeStr }}
{% if greeting.author %}
<b>{{ greeting.author.nickname }}</b> wrote:
{% else %}
an anonymous person wrote:
{% endif %}
<blockquote>{{ greeting.content|escape }}</blockquote>
{% endfor %}
</body>
</html>