feat: initial import
This commit is contained in:
commit
03ab1091b1
50 changed files with 1146 additions and 0 deletions
11
layouts/_shortcodes/address-map.html
Normal file
11
layouts/_shortcodes/address-map.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<iframe
|
||||
width="425"
|
||||
height="350"
|
||||
src="https://www.openstreetmap.org/export/embed.html?bbox=-2.1135646104812627%2C57.14209426300935%2C-2.1091255545616154%2C57.14353930050775&layer=mapnik&marker=57.142816788811984%2C-2.1113450825214386"
|
||||
style="border: 1px solid black"></iframe
|
||||
><br /><small
|
||||
><a
|
||||
href="https://www.openstreetmap.org/?mlat=57.142817&mlon=-2.111345#map=19/57.142817/-2.111345"
|
||||
>{{ T "Show larger map" }}</a
|
||||
></small
|
||||
>
|
||||
3
layouts/_shortcodes/address.html
Normal file
3
layouts/_shortcodes/address.html
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{{ if site.Params.address }}
|
||||
<address>{{ site.Params.address }}</address>
|
||||
{{ end }}
|
||||
6
layouts/_shortcodes/contact-methods.html
Normal file
6
layouts/_shortcodes/contact-methods.html
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{{ range site.Params.contact.methods }}
|
||||
<div class="contact-page__method">
|
||||
<h6 class="no-bottom-margin">{{ T .name }}</h6>
|
||||
<a class="contact-page__method__content" href="{{ .link | safeURL }}">{{ .display }}</a>
|
||||
</div>
|
||||
{{ end }}
|
||||
1
layouts/_shortcodes/feedback-form.html
Normal file
1
layouts/_shortcodes/feedback-form.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<div id="zammad-feedback-form">{{ .Params.fallback }}</div>
|
||||
6
layouts/_shortcodes/primary-button.html
Normal file
6
layouts/_shortcodes/primary-button.html
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<a class="primary-button" href="{{ .Params.url }}">
|
||||
{{ .Params.name }}
|
||||
{{ if .Params.icon }}
|
||||
<i class="primary-button__icon" data-feather="{{ .Params.icon }}"></i>
|
||||
{{ end }}
|
||||
</a>
|
||||
Loading…
Add table
Add a link
Reference in a new issue