idun
GitHub Pages / deploy (push) Successful in 47s Details

This commit is contained in:
kekskurse 2023-10-30 12:10:55 +01:00
parent 4364ccd380
commit 32d53bfd1f
2 changed files with 39 additions and 42 deletions

View File

@ -3,9 +3,6 @@ title: "idun"
date: 2023-10-29T00:49:09+02:00 date: 2023-10-29T00:49:09+02:00
draft: false draft: false
--- ---
Last Update:
Idun is a small piece of software for cleaning up old backups. It supports different rules for how long backups should be kept for each project. It also supports different backends like SFTP or S3. Idun is a small piece of software for cleaning up old backups. It supports different rules for how long backups should be kept for each project. It also supports different backends like SFTP or S3.

View File

@ -1,45 +1,45 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}" data-theme="lofi"> <html lang="{{ .Site.LanguageCode }}" data-theme="lofi">
<head> <head>
<title itemprop="name">{{ .Title }} | {{ .Site.Title }}</title> <title itemprop="name">{{ .Title }} | {{ .Site.Title }}</title>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/style.css?v={{ .GitInfo.Hash }}"> <link rel="stylesheet" href="/css/style.css?v={{ .GitInfo.Hash }}">
<link href="/fonts/remixicon.css" rel="stylesheet"> <link href="/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<div class="container mx-auto font-roboto max-w-4xl">
<div class="flex flex-row justify-between mt-4">
<div>
<a href="/" class="no-underline"><h1 class="mt-0 mb-0">Keks.Cloud</h1></a>
</div>
<ul class="space-x-4 font-light text-xl hidden md:flex items-center ">
<li class="inline-block text-gray-700 hover:text-sky-800"><a class="no-underline" href="/software/">Software</a></li>
<li class="inline-block text-gray-700 hover:text-sky-800"><a class="no-underline" href="/services/">Services</a></li>
</ul>
<div class="dropdown dropdown-end md:hidden">
<label tabindex="0" class="btn m-1">Menu</label>
<ul tabindex="0" class="dropdown-content z-[1] menu p-2 shadow bg-base-100 rounded-box w-52">
<li><a href="/software">Software</a></li>
<li><a href="/services">Services</a></li>
</ul>
</div>
<div class="hidden">
<a href="#" class="btn btn-primary bg-sky-800">Account</a>
</div>
</div>
<hr class="mt-3">
{{- block "main" . }}{{- end }}
</head>
<p class="text-xs pt-5"> <body>
{{ if .GitInfo.AuthorDate }} <div class="container mx-auto font-roboto max-w-4xl">
Last update: {{ .GitInfo.AuthorDate }} <div class="flex flex-row justify-between mt-4">
{{ end }} <div>
</p> <a href="/" class="no-underline"><h1 class="mt-0 mb-0">Keks.Cloud</h1></a>
</div> </div>
<ul class="space-x-4 font-light text-xl hidden md:flex items-center ">
<li class="inline-block text-gray-700 hover:text-sky-800"><a class="no-underline" href="/software/">Software</a></li>
<li class="inline-block text-gray-700 hover:text-sky-800"><a class="no-underline" href="/services/">Services</a></li>
</ul>
<div class="dropdown dropdown-end md:hidden">
<label tabindex="0" class="btn m-1">Menu</label>
<ul tabindex="0" class="dropdown-content z-[1] menu p-2 shadow bg-base-100 rounded-box w-52">
<li><a href="/software">Software</a></li>
<li><a href="/services">Services</a></li>
</ul>
</div>
<div class="hidden">
<a href="#" class="btn btn-primary bg-sky-800">Account</a>
</div>
</div>
<hr class="mt-3">
{{- block "main" . }}{{- end }}
</body>
<p class="text-xs pt-5">
{{ if .GitInfo.AuthorDate }}
Last update: {{ .GitInfo.AuthorDate }}
{{ end }}
</p>
</div>
</body>
</html> </html>