delete contact section
parent
a13470d2e1
commit
f1c75c8930
|
@ -26,7 +26,6 @@ DefaultContentLanguage = "en"
|
||||||
resources = "Resources"
|
resources = "Resources"
|
||||||
action = "Take Action"
|
action = "Take Action"
|
||||||
spread = "Spread"
|
spread = "Spread"
|
||||||
contact = "Contact"
|
|
||||||
language = "Language"
|
language = "Language"
|
||||||
|
|
||||||
# Language selection
|
# Language selection
|
||||||
|
@ -104,13 +103,6 @@ DefaultContentLanguage = "en"
|
||||||
promoButtonLink = "https://fsfe.org/promo#pmpc"
|
promoButtonLink = "https://fsfe.org/promo#pmpc"
|
||||||
shareText = "Tell your friends and followers about Public Code"
|
shareText = "Tell your friends and followers about Public Code"
|
||||||
|
|
||||||
# Contact section
|
|
||||||
[params.contact]
|
|
||||||
headline = "Let's Get In Touch!"
|
|
||||||
description = "Ready to start your next project with us? That's great! Give us a call or send us an email and we will get back to you as soon as possible!"
|
|
||||||
phone = "123-456-6789"
|
|
||||||
email = "feedback@startbootstrap.com"
|
|
||||||
|
|
||||||
# Legal Section
|
# Legal Section
|
||||||
[params.legal]
|
[params.legal]
|
||||||
by = "This is a campaign by Free Software Foundation Europe"
|
by = "This is a campaign by Free Software Foundation Europe"
|
||||||
|
|
|
@ -32,10 +32,6 @@
|
||||||
{{ if .Site.Params.spread }}
|
{{ if .Site.Params.spread }}
|
||||||
{{ partial "spread.html" . }}
|
{{ partial "spread.html" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if .Site.Params.contact }}
|
|
||||||
{{ partial "contact.html" . }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .Site.Params.language }}
|
{{ if .Site.Params.language }}
|
||||||
{{ partial "language.html" . }}
|
{{ partial "language.html" . }}
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
{{ "<!-- CONTACT -->" | safeHTML }}
|
|
||||||
<section id="contact">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-lg-8 col-lg-offset-2 text-center">
|
|
||||||
{{ with .Site.Params.contact.headline }}
|
|
||||||
<h2 class="section-heading">{{ . }}</h2>
|
|
||||||
{{ end }}
|
|
||||||
{{ if and .Site.Params.contact.headline .Site.Params.contact.description }}
|
|
||||||
<hr class="primary">
|
|
||||||
{{ end }}
|
|
||||||
{{ with .Site.Params.contact.description }}
|
|
||||||
<p>{{ . | markdownify }}</p>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
{{ if .Site.Params.contact.phone }}
|
|
||||||
<div class="
|
|
||||||
{{ if .Site.Params.contact.email }}
|
|
||||||
col-lg-4
|
|
||||||
{{ else }}
|
|
||||||
col-lg-8
|
|
||||||
{{ end }}
|
|
||||||
col-lg-offset-2 text-center">
|
|
||||||
<i class="fa fa-phone fa-3x wow bounceIn"></i>
|
|
||||||
<p>{{ .Site.Params.contact.phone }}</p>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
{{ if .Site.Params.contact.email }}
|
|
||||||
<div class="
|
|
||||||
{{ if .Site.Params.contact.phone }}
|
|
||||||
col-lg-4
|
|
||||||
{{ else }}
|
|
||||||
col-lg-8 col-lg-offset-2
|
|
||||||
{{ end }}
|
|
||||||
text-center">
|
|
||||||
<i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i>
|
|
||||||
<p><a href="mailto:{{ .Site.Params.contact.email }}">{{ .Site.Params.contact.email }}</a></p>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
|
@ -37,8 +37,6 @@
|
||||||
color: #2093C4;
|
color: #2093C4;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contact .fa { margin: 10px 0 }
|
|
||||||
|
|
||||||
/* SIGN FORM */
|
/* SIGN FORM */
|
||||||
#action form {
|
#action form {
|
||||||
color: #333;
|
color: #333;
|
||||||
|
|
Loading…
Reference in New Issue