summaryrefslogtreecommitdiff
path: root/repoze/bfg/sampleapp/templates/contents.pt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-07-12 16:28:05 +0000
committerChris McDonough <chrism@agendaless.com>2008-07-12 16:28:05 +0000
commit4c2f00452697031f3c8500f5c95705f17b86b776 (patch)
tree604c4664e684154947ad8d374159a86ac97c3cfa /repoze/bfg/sampleapp/templates/contents.pt
parenteffbaa2f68cc3fcf4a29aa0c275648c2a52e9455 (diff)
downloadpyramid-4c2f00452697031f3c8500f5c95705f17b86b776.tar.gz
pyramid-4c2f00452697031f3c8500f5c95705f17b86b776.tar.bz2
pyramid-4c2f00452697031f3c8500f5c95705f17b86b776.zip
Use a djangoesque layout and naming scheme.
Diffstat (limited to 'repoze/bfg/sampleapp/templates/contents.pt')
-rw-r--r--repoze/bfg/sampleapp/templates/contents.pt6
1 files changed, 6 insertions, 0 deletions
diff --git a/repoze/bfg/sampleapp/templates/contents.pt b/repoze/bfg/sampleapp/templates/contents.pt
new file mode 100644
index 000000000..eaae20ed5
--- /dev/null
+++ b/repoze/bfg/sampleapp/templates/contents.pt
@@ -0,0 +1,6 @@
+<div xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:tal="http://xml.zope.org/namespaces/tal">
+ <div tal:repeat="name context">
+ <a href="${name}/">${name}</a>
+ </div>
+</div>