Page MenuHomePhorge

No OneTemporary

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..e565177
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto
diff --git a/layouts/index.html b/layouts/index.html
index 1c5a569..668c283 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,381 +1,383 @@
{{ define "main" }}
<main>
<div class="bg-gray-200 dark:bg-gray-900">
<div class="max-w-screen-xl px-4 py-8 mx-auto">
<div class="grid items-center gap-8 mb-8 sm:mb-0 lg:gap-12 lg:grid-cols-12">
<div class="col-span-6 px-4 text-center sm:mb-6 lg:text-left lg:mb-0">
<h1
class="mb-2 text-4xl font-extrabold leading-none tracking-tight text-gray-900 md:text-5xl xl:text-6xl dark:text-white">
{{ .Site.Title }}
</h1>
<h2 class="pb-2 text-3xl font-light text-gray-800 dark:text-gray-300 md:text-4xl">
{{ .Site.Params.Moto }}
</h2>
<p
class="max-w-xl mx-auto mb-6 font-normal text-gray-900 lg:mx-0 xl:mb-2 md:text-lg xl:text-xl dark:text-gray-50">
{{ .Site.Params.Description}}
</p>
</div>
<div class="col-span-6">
{{ $hero := resources.GetMatch "images/pages/peaksat_render.png" }}
{{ $thumb := ($hero.Resize "x400 webp q100") }}
{{ $large := ($hero.Resize "x576 webp q100") }}
<img srcset="
{{- with $thumb.RelPermalink -}}{{.}} 400h{{- end -}}
{{- with $large.RelPermalink -}}, {{.}} 576h{{- end -}}" src="{{ $hero.RelPermalink }}"
width="100%" height="" alt="Render of PeakSat" class="w-full max-w-xl mx-auto rounded-lg" />
</div>
</div>
</div>
</div>
<!-- More main page content here... -->
<!-- JITsection -->
<div class="overflow-hidden sm:pt-6 lg:relative">
<div class="max-w-md px-4 mx-auto sm:max-w-3xl sm:px-6 lg:grid lg:max-w-7xl lg:grid-cols-2 lg:gap-12 lg:px-8">
<div>
<div class="md:mt-8">
<div class="mt-6 sm:max-w-xl">
<h2
class="text-3xl font-extrabold tracking-tight text-gray-900 dark:text-white sm:text-4xl md:mt-16">
{{ .Site.Params.P2.Heading }}
</h2>
{{ range .Site.Params.P2.Content }}
<p class="pb-12 mt-6 text-lg text-gray-900 dark:text-white">
{{ .text }}
</p>
{{ end }}
</p>
</div>
</div>
</div>
</div>
<div class="sm:mx-auto sm:max-w-3xl sm:px-6">
<div class="md:py-12 sm:relative sm:mt-12 lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2">
<div class="hidden sm:block">
<div
class="absolute inset-y-0 w-screen left-1/2 rounded-l-3xl bg-gray-50 dark:bg-gray-900/10 lg:left-80 lg:right-0 lg:w-full">
</div><svg class="absolute -mr-3 top-8 right-1/2 lg:left-0 lg:m-0" width="404" height="392"
fill="none" viewBox="0 0 404 392" loading="lazy">
<defs>
<pattern id="837c3e70-6c3a-44e6-8854-cc48c737b659" x="0" y="0" width="20" height="20"
patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="4" height="4" class="text-gray-200 dark:text-gray-900/60"
fill="currentcolor"></rect>
</pattern>
</defs>
<rect width="404" height="392" fill="url(#837c3e70-6c3a-44e6-8854-cc48c737b659)"></rect>
</svg>
</div>
<div class="relative px-8 lg:-mr-40 sm:mx-auto sm:max-w-3xl sm:px-0 lg:h-full lg:max-w-none lg:pl-12">
{{ $p2image := resources.Get .Site.Params.P2.Image }}
{{ with $p2image }}
{{ with .Resize (printf "%dx%d webp q90" .Width .Height) }}
<img imgh src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="p2"
class="w-full max-w-sm mx-auto lg:mx-0 rounded-lg lg:h-96 lg:w-auto lg:max-w-none" loading="lazy" />
{{ end }}
{{ end }}
</div>
</div>
</div>
</div>
<!-- Sponsors section -->
<div class="max-w-md px-4 mx-auto md:pt-24 md:pb-16 sm:max-w-3xl sm:px-6 lg:max-w-7xl lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:items-center lg:gap-24">
<div class="mt-12 grid grid-cols-2 gap-0.5 md:grid-cols-3 lg:mt-0 lg:grid-cols-2">
{{ range .Site.Params.P3.Logos }}
<div class="flex justify-center col-span-1 px-8 py-8 bg-gray-50 dark:bg-gray-900/10">
{{ if .image }}
{{ $sponsor := resources.Get .image }}
<img src="{{ $sponsor.RelPermalink }}" class="max-h-12 dark:invert" alt="{{ .alt }}"
loading="lazy" />
{{ else }}
{{ $sponsor := resources.Get "images/global/spacedot_circle.svg" }}
<img src="{{ $sponsor.RelPermalink }}" class="max-h-12 dark:invert" alt="{{ .alt }}"
loading="lazy" />
{{ end }}
</div>
{{ end }}
</div>
<div>
<h2 class="text-3xl font-bold tracking-tight text-gray-900 dark:text-gray-50 sm:text-4xl">
{{ .Site.Params.P3.Heading }}
</h2>
{{ range .Site.Params.P3.Content }}
<p class="max-w-3xl mt-6 text-lg leading-7 text-gray-900 dark:text-white">
{{ .text }}
</p>
{{ end }}
{{ range .Site.Params.P3.Links }}
<div class="my-6">
<a href="{{ .url }}" class="text-base font-medium text-primary-400 dark:text-primary-100">
{{ .text }}&nbsp&rarr;
</a>
</div>
{{ end }}
</div>
</div>
</div>
<div class="relative px-1 pt-8 pb-4 bg-transparent lg:px-8 lg:pt-12 lg:mb-4 md:mt-12">
<div class="absolute inset-0">
<div class="bg-gray-200 dark:bg-gray-900/50 h-full sm:h-full"></div>
</div>
<div class="relative px-2 mx-auto max-w-7xl">
<div class="text-center">
<h2 class="text-3xl font-black tracking-tight text-primary-500 dark:text-primary-300 sm:text-4xl">
Consortium Partners
</h2>
<p class="max-w-2xl mx-auto mt-3 text-xl text-gray-500 dark:text-gray-300 sm:mt-4">
</p>
</div>
<div class="mx-auto text-gray-900 max-w-7xl dark:text-gray-50 md:px-1.5">
<div class="px-4 text-gray-900 dark:text-white not-prose dark:text-zinc-200">
<div class="grid gap-6 md:gap-64 mx-auto mt-12 mb-4 mx-32 lg:max-w-none md:grid-cols-2 items-center justify-evenly">
{{ $logo := resources.Get "images/global/logos/auth-white.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Aristotle University of Thessaloniki"
class="object-fill overflow-hidden hidden dark:block" width="100%" height="" loading="lazy"
/>
{{ end }}
{{ $logo := resources.Get "images/global/logos/auth-red.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Aristotle University of Thessaloniki"
class="object-fill overflow-hidden dark:hidden" width="100%" height="" loading="lazy"
/>
{{ end }}
{{ $logo := resources.Get "images/global/logos/Prisma_logo.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Prisma Electronics"
class="object-fill overflow-hidden" width="100%" height="" loading="lazy"
/>
{{ end }}
</div>
</div>
</div>
<div class="text-center">
<h3 class="text-2xl font-bold tracking-tight text-primary-500 dark:text-primary-300 sm:text-3xl">
Supported By
</h3>
<p class="max-w-2xl mx-auto mt-3 text-xl text-gray-500 dark:text-gray-300 sm:mt-4">
Programme of the European Union – Next GenerationEU
</p>
</div>
<div class="mx-auto text-gray-900 max-w-7xl dark:text-gray-50 md:px-1.5">
<div class="px-24 md:px-4 text-gray-900 dark:text-white not-prose dark:text-zinc-200">
<div class="grid gap-12 mx-auto mt-12 mb-4 lg:max-w-none md:grid-cols-4 items-center">
{{ $logo := resources.Get "images/global/logos/EN_Funded_by_European_Union_vert_RGB_NEG.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Funded by the European Union - NextGenerationEU"
class="object-fill overflow-hidden hidden dark:block" width="100%" height="" loading="lazy"
/>
{{ end }}
{{ $logo := resources.Get "images/global/logos/EN_Funded_by_European_Union_vert_RGB_POS.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Funded by the European Union - NextGenerationEU"
class="object-fill overflow-hidden dark:hidden" width="100%" height="" loading="lazy"
/>
{{ end }}
{{ $logo := resources.Get "images/global/logos/Greece20.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Greece20"
class="object-fill overflow-hidden" width="100%" height="" loading="lazy"
/>
{{ end }}
{{ $logo := resources.Get "images/global/logos/ministry.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Hellenic Republic - Ministry of Digital Governance"
class="object-fill overflow-hidden" width="100%" height="" loading="lazy"
/>
{{ end }}
{{ $logo := resources.Get "images/global/logos/ESA_logo_2020_White.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Greece20"
class="object-fill overflow-hidden hidden dark:block" width="100%" height="" loading="lazy"
alt="ESA" />
{{ end }}
{{ $logo := resources.Get "images/global/logos/ESA_logo_2020_Deep.png" }}
{{ with $logo }}
{{ $logoimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $logoimage }}" alt="Greece20"
class="object-fill overflow-hidden dark:hidden" width="100%" height="" loading="lazy"
alt="ESA" />
{{ end }}
</div>
</div>
</div>
</div>
</div>
<!-- Blog section -->
<div class="relative px-1 pt-8 pb-4 bg-transparent lg:px-8 lg:pt-12 lg:mb-4 md:mt-12">
<div class="absolute inset-0">
<div class="bg-gray-200 dark:bg-gray-900/50 md:mt-64 h-1/3 sm:h-2/3"></div>
</div>
<div class="relative px-2 mx-auto max-w-7xl">
<div class="text-center">
<h2 class="text-3xl font-black tracking-tight text-primary-500 dark:text-primary-300 sm:text-4xl">
{{ .Site.Params.P4.Heading }}
</h2>
{{ range .Site.Params.P4.Content }}
<p class="max-w-2xl mx-auto mt-3 text-xl text-gray-500 dark:text-gray-300 sm:mt-4">
{{ .text }}
</p>
{{ end }}
</div>
<div class="mx-auto text-gray-900 max-w-7xl dark:text-gray-50 md:px-1.5">
<div class="px-4 text-gray-900 dark:text-white not-prose dark:text-zinc-200">
<div class="grid gap-4 mx-auto mt-12 mb-4 lg:max-w-none md:grid-cols-3">
{{ $posts := where .Site.RegularPages "Section" "posts" | first 3 }}
{{ range $posts }}
<div class="flex flex-col overflow-hidden rounded-lg shadow-lg bg-gray-50 dark:bg-gray-900">
<a href="{{.Permalink}}">
{{ with .Params.featured_image }}
{{ with resources.Get . }}
{{ $postimage := (.Resize "500x webp q90").RelPermalink }}
<img src="{{ $postimage }}" class="object-fill overflow-hidden rounded-t-lg"
width="100%" height="" loading="lazy" alt="{{ .Title }}" />
{{ end }}
{{ end }}
</a>
<div class="p-6">
<div class="flex-1">
<a href="{{.Permalink}}"
class="block mt-2 text-2xl font-black text-gray-900 dark:text-gray-200 hover:text-primary-600 dark:hover:text-primary-500 hover:underline">
{{ .Title }}
</a>
<p class="mt-3 text-base text-gray-900 dark:text-gray-300">
{{ .Params.summary }}
</p>
</div>
<div class="flex pt-6 font-medium text-primary-600 dark:text-primary-100 text-md">
<span class="pr-2 font-black">Tags:</span>
{{ range $elem_index, $elem_val := (.GetTerms "tags") }}
{{- if gt $elem_index 0 }}, {{ end -}}
<a href="{{ .Permalink }}"
class="inline-flex items-center rounded-md bg-gray-300 hover:bg-primary-200 hover:text-black px-2.5 py-0.5 text-sm font-medium text-gray-900 ">{{
.LinkTitle }}</a>
{{- end -}}
</div>
<div class="flex items-center mt-6">
<div class="flex-shrink-0">
<span class="sr-only">{{ .Params.author }}</span>
{{ with .Params.authorimage }}
{{ with resources.Get . }}
{{ if eq .MediaType.SubType "svg" }}
{{ $authorimage := .RelPermalink }}
<img class="w-10 h-10 rounded-full" src="{{ $authorimage }}" alt="">
{{ else }}
{{ $authorimage := (.Resize "40x webp").RelPermalink }}
<img class="w-10 h-10 rounded-full" src="{{ $authorimage }}" alt="">
{{ end }}
{{ end }}
{{ end }}
</div>
<div class="pt-1 ml-3">
<p class="text-sm font-medium text-gray-900 dark:text-white">
{{ .Params.author }}
</p>
<div class="flex space-x-1 text-sm text-gray-500 dark:text-white">
<time datetime="2020-02-12">{{.Date.Format "2006-01-02"}}</time>
<span aria-hidden="true">&middot;</span>
<span>{{ math.Round (div (countwords .Content) 220.0) }}
min read</span>
</div>
</div>
</div>
</div>
</div>
{{ end }}
</div>
</div>
</div>
</div>
</div>
{{ if not .Site.Params.Disable_stay_uptodate}}
<!-- CTA section -->
<div class="relative pb-16 mt-6">
<div class="max-w-md mx-auto px-7 sm:max-w-3xl lg:max-w-7xl">
<div class="relative px-6 py-10 overflow-hidden shadow-xl bg-primary-500 rounded-2xl sm:px-12 sm:py-20">
<div aria-hidden="true" class="absolute inset-0 -mt-72 sm:-mt-32 md:mt-0">
<svg class="absolute inset-0 w-full h-full" preserveAspectRatio="xMidYMid slice"
xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1463 360" loading="lazy">
<path class="text-primary-600 text-opacity-40" fill="currentColor"
d="M-82.673 72l1761.849 472.086-134.327 501.315-1761.85-472.086z" />
<path class="text-primary-600 text-opacity-40" fill="currentColor"
d="M-217.088 544.086L1544.761 72l134.327 501.316-1761.849 472.086z" />
</svg>
</div>
<div class="relative">
<div class="sm:text-center">
<h2 class="text-3xl font-bold tracking-tight text-white sm:text-4xl">
Contact Us
</h2>
<p class="max-w-2xl mx-auto mt-6 text-lg text-primary-100">
Questions, or interested in a collaboration?
We would love to hear from you!
</p>
</div>
- <form method="POST" action="https://peaksat.spacedot.gr/forms/peaksat-contact">
+ <form method="POST" action="https://contact.spacedot.gr/en/customer/create-ticket/">
+ <input type="hidden" name="type" value="2">
+ <input type="hidden" name="subject" value="Website Contact Form">
<div class="mt-12 sm:mx-auto sm:flex sm:max-w-lg gap-3">
<div class="flex-1 min-w-0">
- <label for="firstName" class="sr-only">Your Name</label>
- <input id="firstName" name="firstName" type="text"
+ <label for="name" class="sr-only">Your Name</label>
+ <input id="name" name="name" type="text"
class="block w-full px-5 py-3 text-base text-gray-900 placeholder-gray-500 border border-transparent rounded-md shadow-sm focus:border-transparent focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-primary-500"
placeholder="Your Name">
</div>
<div class="flex-1 min-w-0 mt-4 sm:mt-0">
- <label for="subject" class="sr-only">E-mail Address</label>
- <input id="subject" name="subject" type="email"
+ <label for="from" class="sr-only">E-mail Address</label>
+ <input id="from" name="from" type="email"
class="block w-full px-5 py-3 text-base text-gray-900 placeholder-gray-500 border border-transparent rounded-md shadow-sm focus:border-transparent focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-primary-500"
placeholder="E-mail Address">
</div>
</div>
<div class="sm:mx-auto sm:max-w-lg mt-4">
<label for="body" class="sr-only">Your Message</label>
- <textarea id="body" name="body" rows="4"
+ <textarea id="body" name="reply" rows="4"
class="w-full px-5 py-3 text-base text-gray-900 placeholder-gray-500 border border-transparent rounded-md shadow-sm focus:border-transparent focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-primary-500"
placeholder="Your Message"></textarea>
</div>
<div class="sm:mx-auto sm:max-w-lg mt-4">
<button type="submit"
class="block w-full px-5 py-3 text-base font-medium text-white bg-gray-900 border border-transparent rounded-md shadow hover:bg-black focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-primary-500 sm:px-10">
Submit
</button>
</div>
</form>
</div>
</div>
</div>
</div>
{{ end }}
</main>
{{ end }}
\ No newline at end of file

File Metadata

Mime Type
text/x-diff
Expires
Sat, Sep 20, 17:10 (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
697102
Default Alt Text
(23 KB)

Event Timeline