Add files via upload

This commit is contained in:
Gorri
2022-11-02 17:48:47 +01:00
committed by GitHub
parent f5af86908c
commit 6802467dcc
99 changed files with 7730 additions and 0 deletions
@@ -0,0 +1,64 @@
<!-- Footer -->
{{ $data := index .Site.Data .Site.Language.Lang }}
<footer id="footer">
{{ with $data.contactinfo.contactformaction }}
<section>
<form method="post" action="{{ . }}">
<div class="fields">
<div class="field">
<label for="name">{{ i18n "CONTACT_FORM_FIELD_NAME" . }}</label>
<input type="text" name="name" id="name" />
</div>
<div class="field">
<label for="email">{{ i18n "CONTACT_FORM_FIELD_EMAIL" . }}</label>
<input type="text" name="email" id="email" />
</div>
<div class="field">
<label for="message">{{ i18n "CONTACT_FORM_FIELD_MESSAGE" . }}</label>
<textarea name="message" id="message" rows="3"></textarea>
</div>
</div>
<ul class="actions">
<li><input type="submit" value='{{ i18n "CONTACT_FORM_SUBMIT_SEND_MESSAGE" . }}' /></li>
</ul>
</form>
</section>
{{ end }}
<section class="split contact">
{{ with $data.contactinfo.address }}
<section class="alt">
<h3>{{ i18n "CONTACT_ADDRESS" . }}</h3>
<p>
{{ range $i, $e := . }}
{{ if $i }} <br/> {{ end }} {{ .line }}
{{ end }}
</p>
</section>
{{ end }}
{{ with $data.contactinfo.phone }}
<section>
<h3>{{ i18n "CONTACT_PHONE" . }}</h3>
<p><a href="tel:{{ . }}">{{ . }}</a></p>
</section>
{{ end }}
{{ with $data.contactinfo.email }}
<section>
<h3>{{ i18n "CONTACT_EMAIL" . }}</h3>
<p><a href="mailto:{{ . }}">{{ . }}</a></p>
</section>
{{ end }}
{{ with $data.social }}
<section>
<h3>{{ i18n "CONTACT_SOCIAL" . }}</h3>
<ul class="icons alt">
{{ with .instagram}}
<li><a href="{{ . }}" class="icon alt fa-instagram"><span class="label">Instagram</span></a></li>
{{ end }}
{{ with .youtube}}
<li><a href="{{ . }}" class="icon alt fa-youtube"><span class="label">Youtube</span></a></li>
{{ end }}
</ul>
</section>
{{ end }}
</section>
</footer>