aboutsummaryrefslogtreecommitdiff
path: root/templates/postform.tmpl
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2020-01-01 09:40:47 +0000
committerr <r@freesoftwareextremist.com>2020-01-01 09:40:47 +0000
commit2f4cd260fd624f964be09f1dad20331c418fdf42 (patch)
tree0e3fa864fbd1138dfbb1abdb13cea608b41210b4 /templates/postform.tmpl
parentecf284453a3d165231688368153e556e5776028b (diff)
downloadbloat-2f4cd260fd624f964be09f1dad20331c418fdf42.tar.gz
bloat-2f4cd260fd624f964be09f1dad20331c418fdf42.zip
Use png icons instead of font icons
Diffstat (limited to 'templates/postform.tmpl')
-rw-r--r--templates/postform.tmpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/postform.tmpl b/templates/postform.tmpl
index a79f86b..4e2d4a4 100644
--- a/templates/postform.tmpl
+++ b/templates/postform.tmpl
@@ -1,12 +1,12 @@
<form class="post-form" action="/post" method="POST" enctype="multipart/form-data">
{{if .ReplyContext}}
<input type="hidden" name="reply_to_id" value="{{.ReplyContext.InReplyToID}}" />
- <label for="post-content"> Reply to {{.ReplyContext.InReplyToName}} </label>
+ <label for="post-content" class="post-form-title"> Reply to {{.ReplyContext.InReplyToName}} </label>
{{else}}
- <label for="post-content"> New post </label>
+ <label for="post-content" class="post-form-title"> New post </label>
{{end}}
- <a class="post-form-emoji-link" href="/emojis" target="_blank">
- <i class="fa fa-smile-o" title="emoji reference"></i>
+ <a class="post-form-emoji-link" href="/emojis" target="_blank" title="emoji reference">
+ <img class="icon post-emoji" src="/static/icons/smile-o.png" alt="emojis" />
</a>
<div class="post-form-content-container">
<textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea>