kube migration

This commit is contained in:
2022-07-03 16:13:03 +02:00
parent 4d1eb87f5c
commit 287cb9c2d0
6 changed files with 45 additions and 21 deletions

View File

@ -20,6 +20,8 @@
{{ end }}
<div class="flex justify-between items-center">
<div class="flex items-center gap-4">
<img src="/kube.png" width="30" height="30" alt="Kubernetes" title="Run on bare metal Kubernetes on Hetzner Cloud" />
{{/* Copyright */}}
<p class="hidden sm:block text-sm text-neutral-500 dark:text-neutral-400">
{{- with .Site.Params.copyright }}
@ -32,7 +34,7 @@
</p>
<a href="https://yesterweb.org/no-to-web3/">
<img src="https://auzziejay.com/images/noweb32.gif" />
<img src="https://auzziejay.com/images/noweb32.gif" alt="No to Web3" />
</a>
</div>
{{/* Appearance switch */}}

View File

@ -31,7 +31,7 @@
"red" "border-red-500" "teal" "border-teal-500" "primary" "border-purple-500" }}
<div class="flex flex-col gap-4 rounded border-2 p-4 {{ (index $borders (or .color "primary")) }}">
<div class="text-center">
<a href="https://github.com/{{ .repo }}" target="_blank">
<a href="{{ .demo }}" target="_blank">
<h4 class="pb-1 font-bold border-b-2 border-purple-500 inline-block">
{{ .title }}
</h4>
@ -48,6 +48,10 @@
<div class="flex justify-center gap-4">
{{ partial "button.html" (dict "text" (partial "icon.html" "github") "href" (print
"https://github.com/" .repo) "color" .color) }}
{{ if .ci }}
{{ partial "button.html" (dict "text" (partial "icon.html" "bug") "href" (print
"https://concourse.okami101.io/teams/main/pipelines/" .ci) "color" .color) }}
{{ end }}
{{ if .demo }}
{{ partial "button.html" (dict "text" "Demo" "href" .demo "color" .color) }}
{{ end }}