hugo-hyperskip

Email-powered static comments for Hugo

git clone git://git.shimmy1996.com/hugo-hyperskip.git
commit e5294afcbe7840b7c88c3d360d7cb65218579403
parent e9530df7feadc022b342079dcdb07c0fe10aa759
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sun,  5 Jan 2020 13:43:50 -0600

Clean up and remove extra spaces

Diffstat:
Mlayouts/partials/comment_form.html | 13+++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/layouts/partials/comment_form.html b/layouts/partials/comment_form.html
@@ -1,18 +1,15 @@
-<form
-  action="mailto:{{ $.Site.Author.email }}?subject=RE:{{ $.Page.RelPermalink }}"
-  method="post"
-  name="comment_form">
+<form action="mailto:{{ $.Site.Author.email }}?subject=RE:{{ $.Page.RelPermalink }}"
+      method="post"
+      name="comment_form">
   <label for="name">{{ i18n "hyperskip-name" }}</label><br/>
   <input type="text" id="name" name="name" maxlength="20"
-         placeholder="{{ i18n "hyperskip-name-default" }}"/>
-  <br/><br/>
+         placeholder="{{ i18n "hyperskip-name-default" }}"/><br/>
   <label for="comment">{{ i18n "hyperskip-comment" }}</label><br/>
   <textarea required
             id="comment"
             name="comment"
             rows="8"
             minlength="3"
-            placeholder="{{ i18n "hyperskip-requirement"}}"></textarea>
-  <br/><br/>
+            placeholder="{{ i18n "hyperskip-requirement"}}"></textarea><br/>
   <input type="submit" value="{{ i18n "hyperskip-submit"}}">
 </form>