diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/comments_comment.tmpl (renamed from templates/postcomment_comment.tmpl) | 0 | ||||
-rw-r--r-- | templates/comments_display.tmpl (renamed from templates/postcomment_display.tmpl) | 8 | ||||
-rw-r--r-- | templates/comments_embed.tmpl | 7 | ||||
-rw-r--r-- | templates/comments_form.tmpl (renamed from templates/postcomment_form.tmpl) | 4 | ||||
-rw-r--r-- | templates/postcomment_embed.tmpl | 7 |
5 files changed, 13 insertions, 13 deletions
diff --git a/templates/postcomment_comment.tmpl b/templates/comments_comment.tmpl index 8c89458f3..8c89458f3 100644 --- a/templates/postcomment_comment.tmpl +++ b/templates/comments_comment.tmpl diff --git a/templates/postcomment_display.tmpl b/templates/comments_display.tmpl index d3eabb3a1..04e0613e0 100644 --- a/templates/postcomment_display.tmpl +++ b/templates/comments_display.tmpl @@ -1,6 +1,6 @@ -<div class="postcomment-display"> +<div class="comments-display"> -<div class="postcomment-header"> +<div class="comments-header"> Posted by <TMPL_IF NAME="AUTHOR"> <span class="author"> @@ -15,10 +15,10 @@ Posted by (<TMPL_VAR CTIME>) </div> -<div class="postcomment-subject"><TMPL_VAR TITLE></div> +<div class="comments-subject"><TMPL_VAR TITLE></div> <div class="inlinecontent"> <TMPL_VAR CONTENT> </div> -</div><!--.postcomment-display--> +</div><!--.comments-display--> diff --git a/templates/comments_embed.tmpl b/templates/comments_embed.tmpl new file mode 100644 index 000000000..cbb9247f2 --- /dev/null +++ b/templates/comments_embed.tmpl @@ -0,0 +1,7 @@ +<div class="comments-embed"> +<TMPL_IF NAME=DISABLED> +[Posting comments disabled: <TMPL_VAR NAME=DISABLED>] +<TMPL_ELSE> +<a href="<TMPL_VAR CGIURL ESCAPE=HTML>?do=comment&page=<TMPL_VAR PAGE ESCAPE=URL>">Post a comment</a> +</TMPL_IF> +</div> diff --git a/templates/postcomment_form.tmpl b/templates/comments_form.tmpl index 293f0f17e..fbf49be34 100644 --- a/templates/postcomment_form.tmpl +++ b/templates/comments_form.tmpl @@ -1,4 +1,4 @@ -<div class="postcomment-form"> +<div class="comments-form"> <TMPL_VAR MESSAGE> <TMPL_VAR FORM-START> <TMPL_VAR FIELD-DO> @@ -22,4 +22,4 @@ IkiWiki directives ([[!directive]]) are <TMPL_UNLESS NAME="ALLOWDIRECTIVES">not </div><!-- #preview --> </TMPL_IF> -</div><!-- .postcomment-form --> +</div><!-- .comments-form --> diff --git a/templates/postcomment_embed.tmpl b/templates/postcomment_embed.tmpl deleted file mode 100644 index eae741214..000000000 --- a/templates/postcomment_embed.tmpl +++ /dev/null @@ -1,7 +0,0 @@ -<div class="postcomment-embed"> -<TMPL_IF NAME=DISABLED> -[Posting comments disabled: <TMPL_VAR NAME=DISABLED>] -<TMPL_ELSE> -<a href="<TMPL_VAR CGIURL ESCAPE=HTML>?do=postcomment&page=<TMPL_VAR PAGE ESCAPE=URL>">Post a comment</a> -</TMPL_IF> -</div> |