Make the final page more usable with a big button on the right hand side. Also add logout link.
diff --git a/samples/appengine/welcome.html b/samples/appengine/welcome.html
index 421711b..da40a16 100644
--- a/samples/appengine/welcome.html
+++ b/samples/appengine/welcome.html
@@ -1,13 +1,29 @@
 <html>
   <head>
     <title>Buzz Stuff</title>
+    <style type=text/css>
+      td  { vertical-align: top; padding: 0.5em }
+      img { border:0 }
+    </style>
   </head>
   <body>
-
-    <ul>
-      {% for item in items %}
-      <li>{{ item.object.content }}</li>
+    <p><a href="{{ logout }}">Logout</a></p>
+      <table border=0>
+      {% for item in activitylist.items %}
+      <tr valign=top>
+        <td>
+          <a href="{{ item.actor.profileUrl }}"><img
+            src="{{ item.actor.thumbnailUrl }}"></a><br>
+          <a href="{{ item.actor.profileUrl }}">{{ item.actor.name }}</a></td>
+      <td>
+        {{ item.object.content }}
+        </td>
+        <td>
+          <a href="{{ item.object.links.alternate.0.href }}"><img
+            src="/static/go.png"></a>
+        </td>
+      </tr>
       {% endfor %}
-    </ul>
+      </table>
   </body>
 </html>