forked from sr2/www.sr2.uk
feat: inital import
This commit is contained in:
commit
c08a080f6c
43 changed files with 1572 additions and 0 deletions
36
layouts/_partials/home.html
Normal file
36
layouts/_partials/home.html
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<div class="divider"></div>
|
||||
|
||||
{{ with .GetPage "/info/communication-strategy" }}
|
||||
{{ partial "half-section.html" . }}
|
||||
{{ end }}
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
{{ $ctx := dict
|
||||
"page" .
|
||||
"title" (T "Our Team")
|
||||
"content" (partial "team.html" .)
|
||||
}}
|
||||
{{ partial "flex-section.html" $ctx }}
|
||||
|
||||
{{ $ctx := dict
|
||||
"page" .
|
||||
"title" (T "Our Partners")
|
||||
"content" (partial "partners.html" .)
|
||||
}}
|
||||
{{ partial "flex-section.html" $ctx }}
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
{{ with .GetPage "/info/technologies" }}
|
||||
{{ partial "full-section.html" . }}
|
||||
{{ end }}
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
{{ $ctx := dict
|
||||
"page" .
|
||||
"title" (T "Contact Us")
|
||||
"content" (partial "contact.html" .)
|
||||
}}
|
||||
{{ partial "flex-section.html" $ctx }}
|
||||
5
layouts/_partials/legal.html
Normal file
5
layouts/_partials/legal.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Copyright © SR2 Communications Limited 2021-{{ now.Format "2006" }}.
|
||||
SR2 and SR2 Communications are trading names of SR2 Communications Limited.
|
||||
SR2 Communications Limited is a registered company in Scotland, number SC692687.
|
||||
SR2 Communications Limited is registered for VAT in the United Kingdom, number GB377479732, and in the European Union, number EU372081779.
|
||||
SR2 Communications Limited is registered with the Information Commissioners Office, registration number <a href="https://ico.org.uk/ESDWebPages/Entry/ZB036723">ZB036723</a>.
|
||||
41
layouts/_partials/partners.html
Normal file
41
layouts/_partials/partners.html
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
|
||||
<div style="width: 100%; text-align: center">
|
||||
{{ with resources.Get "/images/logos/guardianproject.png" }}
|
||||
<img style="max-height: 100px; max-width: 100%;" src="{{ .RelPermalink }}" alt="Guardian Project">
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="team-member">
|
||||
{{ with resources.Get "/images/logos/civicert.png" }}
|
||||
<img style="max-height: 100px;" src="{{ .RelPermalink }}" alt="CiviCERT">
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="team-member">
|
||||
{{ with resources.Get "/images/logos/cdr.png" }}
|
||||
<img style="max-height: 100px;" src="{{ .RelPermalink }}" alt="Centre for Digital Resilience">
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="team-member">
|
||||
{{ with resources.Get "/images/logos/tor.png" }}
|
||||
<img style="max-height: 100px;" src="{{ .RelPermalink }}" alt="Tor Project">
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="team-member">
|
||||
{{ with resources.Get "/images/logos/hetzner.webp" }}
|
||||
<img style="max-height: 100px;" src="{{ .RelPermalink }}" alt="Hetzner">
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="team-member">
|
||||
{{ with resources.Get "/images/logos/openrightsgroup.png" }}
|
||||
<img style="max-height: 100px;" src="{{ .RelPermalink }}" alt="Open Rights Group">
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="team-member">
|
||||
{{ with resources.Get "/images/logos/nominet.png" }}
|
||||
<img style="max-height: 80px;" src="{{ .RelPermalink }}" alt="Nominet Accredited Channel Partner">
|
||||
{{ end }}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue