aboutsummaryrefslogtreecommitdiff
path: root/public/mailbox.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/mailbox.html')
-rw-r--r--public/mailbox.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/public/mailbox.html b/public/mailbox.html
new file mode 100644
index 0000000..2f5cdb6
--- /dev/null
+++ b/public/mailbox.html
@@ -0,0 +1,19 @@
+{{template "head"}}
+
+<h1>koushin</h1>
+
+<p>Mailboxes:</p>
+<ul>
+ {{range .Mailboxes}}
+ <li>{{.Name}}</li>
+ {{end}}
+</ul>
+
+<p>Messages:</p>
+<ul>
+ {{range .Messages}}
+ <li>{{.Envelope.Subject}}</li>
+ {{end}}
+</ul>
+
+{{template "foot"}}