Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/saey55/hugo-elate-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMāris Zinbergs <maris.zinbergs@gmail.com>2016-12-21 02:52:53 +0300
committerMāris Zinbergs <maris.zinbergs@gmail.com>2016-12-21 02:52:53 +0300
commit9e175714db09a97d25a7fb2ea489b929edb00b87 (patch)
tree3f747cf53632b2b20a7772c3a097bbb84a75a6f1
parentdbb0b7f780523d26db0d824fde1fcfde6d1d8f0a (diff)
Fix tab usage
-rwxr-xr-xlayouts/partials/contact.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/layouts/partials/contact.html b/layouts/partials/contact.html
index 50f046b..f0806bc 100755
--- a/layouts/partials/contact.html
+++ b/layouts/partials/contact.html
@@ -24,28 +24,28 @@
<h3>{{ with .Site.Params.contact.form }}{{ . | markdownify }}{{ end }}</h3>
<form method="post" action="//formspree.io/{{ with .Site.Params.email }}{{.}}{{ end }}">
<div class="form-group ">
- {{ with .Site.Params.contact.name }}
+ {{ with .Site.Params.contact.name }}
<label for="name" class="sr-only">{{ . | markdownify }}</label>
<input id="name" class="form-control" name="name" placeholder="{{ . }}" type="text">
- {{ end }}
+ {{ end }}
</div>
<div class="form-group ">
- {{ with .Site.Params.contact.email }}
+ {{ with .Site.Params.contact.email }}
<label for="email" class="sr-only">{{ . | markdownify }}</label>
<input id="email" class="form-control" name="_replyto" placeholder="{{ . }}" type="email">
- {{ end }}
+ {{ end }}
</div>
<div class="form-group ">
- {{ with .Site.Params.contact.phone }}
+ {{ with .Site.Params.contact.phone }}
<label for="phone" class="sr-only">{{ . | markdownify }}</label>
<input id="phone" class="form-control" placeholder="{{ . }}" type="text">
- {{ end }}
+ {{ end }}
</div>
<div class="form-group ">
- {{ with .Site.Params.contact.message }}
+ {{ with .Site.Params.contact.message }}
<label for="message" class="sr-only">{{ . | markdownify }}</label>
<textarea name="" id="message" cols="30" rows="5" class="form-control" name="message" placeholder="{{ . }}"></textarea>
- {{ end }}
+ {{ end }}
</div>
<div class="form-group ">
<input class="btn btn-primary btn-lg" value="{{ .Site.Params.contact.button | markdownify }}" type="submit">