summaryrefslogtreecommitdiff
path: root/templates/article.html
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-03-02 16:19:50 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-03-02 16:19:50 +0100
commit2d698a74f90b0915dd8c2e3e42ce0f21d0a7bd1c (patch)
treee4da3067dde6aedb30436d28ec5701b701fcacfc /templates/article.html
parentdd5772e4b88dd41e210a4b789a52ae8656e5f1fd (diff)
Add comment support to article template, add support for multiple page templates.
Diffstat (limited to 'templates/article.html')
-rw-r--r--templates/article.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/templates/article.html b/templates/article.html
index 8eef256..24b5b17 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -33,3 +33,59 @@
</footer>
</div>
</article>
+
+{.section commentary}
+<div class="comments">
+ <h2>{comments-heading|html}</h2>
+
+ {.repeated section comments}
+ <div class="comment">
+ <div class="comment-header">
+ {publishing-date|html-human-date}
+ <a rel="nofollow" {.section link}href="{@|html-attr-value}"{.end}>{.section author}{@|html}{.or}{generic-commenter-name|html}{.end}</a>:
+ </div>
+ <div class="comment-body">
+ {body}
+ </div>
+ </div>
+ {.end}
+
+ {.section comment-submission}
+ <h2>{title}</h2>
+ {notes}
+ <form action="{action|html-attr-value}" accept-charset="UTF-8"
+ enctype="application/x-www-form-urlencoded" method="post">
+ <div style="display: none">
+ <input name="id" type="hidden" value="98" />
+ <input name="action" type="hidden" value="post-comment" />
+ </div>
+ <div class="comment-form-table">
+ {.repeated section fields}
+ <div class="comment-form-row">
+ <div class="comment-form-label">
+ <label style="vertical-align: top"
+ for="{field-id|html-attr-value}">{field-label|html}:</label>
+ </div>
+ <div class="comment-form-input">
+ <input id="{field-id|html-attr-value}"
+ name="{field-name|html-attr-value}" type="text" />
+ </div>
+ </div>
+ {.end}
+ <div class="comment-form-row">
+ <div class="comment-form-label">
+ <label style="vertical-align: top" for="comment-body">{body-label|html}:</label>
+ </div>
+ <div class="comment-form-input">
+ <textarea id="comment-body" cols="60" rows="15"
+ name="comment-body">
+ </textarea>
+ </div>
+ </div>
+ </div>
+ <div><input type="submit" value="{submit-button-label|html-attr-value}"></div>
+ </form>
+ {.end}
+
+</div>
+{.end}