Switch to new theme/structure

This commit is contained in:
yann64 2023-11-19 21:01:17 +01:00
parent b46c12fd16
commit 84e65e8dca
40 changed files with 164 additions and 557 deletions

6
.gitmodules vendored
View File

@ -1,3 +1,3 @@
[submodule "themes/hugo-bootstrap-theme"]
path = themes/hugo-bootstrap-theme
url = https://github.com/filipecarneiro/hugo-bootstrap-theme.git
[submodule "themes/hello-friend-ng"]
path = themes/hello-friend-ng
url = https://github.com/rhazdon/hugo-theme-hello-friend-ng.git

View File

@ -1,5 +0,0 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

Binary file not shown.

Before

Width:  |  Height:  |  Size: 376 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 314 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

View File

@ -1,4 +0,0 @@
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-shield-check" fill="#14bf98" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M5.443 1.991a60.17 60.17 0 0 0-2.725.802.454.454 0 0 0-.315.366C1.87 7.056 3.1 9.9 4.567 11.773c.736.94 1.533 1.636 2.197 2.093.333.228.626.394.857.5.116.053.21.089.282.11A.73.73 0 0 0 8 14.5c.007-.001.038-.005.097-.023.072-.022.166-.058.282-.111.23-.106.525-.272.857-.5a10.197 10.197 0 0 0 2.197-2.093C12.9 9.9 14.13 7.056 13.597 3.159a.454.454 0 0 0-.315-.366c-.626-.2-1.682-.526-2.725-.802C9.491 1.71 8.51 1.5 8 1.5c-.51 0-1.49.21-2.557.491zm-.256-.966C6.23.749 7.337.5 8 .5c.662 0 1.77.249 2.813.525a61.09 61.09 0 0 1 2.772.815c.528.168.926.623 1.003 1.184.573 4.197-.756 7.307-2.367 9.365a11.191 11.191 0 0 1-2.418 2.3 6.942 6.942 0 0 1-1.007.586c-.27.124-.558.225-.796.225s-.526-.101-.796-.225a6.908 6.908 0 0 1-1.007-.586 11.192 11.192 0 0 1-2.417-2.3C2.167 10.331.839 7.221 1.412 3.024A1.454 1.454 0 0 1 2.415 1.84a61.11 61.11 0 0 1 2.772-.815z"/>
<path fill-rule="evenodd" d="M10.854 6.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 8.793l2.646-2.647a.5.5 0 0 1 .708 0z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

View File

@ -1,55 +0,0 @@
// Custom.scss
// Option B: Include parts of Bootstrap
// https://getbootstrap.com/docs/5.2/customize/sass/
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
@import "bootstrap/functions";
// 2. Include any default variable overrides here
@import "variable-overrides";
// 3. Include remainder of required Bootstrap stylesheets
@import "bootstrap/variables";
@import "bootstrap/variables-dark";
// 4. Include any default map overrides here
// 5. Include remainder of required parts
@import "bootstrap/maps";
@import "bootstrap/mixins";
@import "bootstrap/utilities";
// 6. Optionally include any other parts as needed
@import "bootstrap/root";
@import "bootstrap/reboot";
@import "bootstrap/type";
@import "bootstrap/images";
@import "bootstrap/containers";
@import "bootstrap/grid";
@import "bootstrap/helpers";
@import "bootstrap/buttons";
@import "bootstrap/nav";
@import "bootstrap/navbar";
@import "bootstrap/dropdown";
@import "bootstrap/breadcrumb";
@import "bootstrap/badge";
@import "bootstrap/card";
// pages/bootstrap-components/
@import "bootstrap/accordion";
@import "bootstrap/alert";
@import "bootstrap/list-group";
// pages/markdown-cheat-sheet/
@import "bootstrap/tables";
// pages/bootstrap-carousel/
@import "bootstrap/carousel";
// 7. Optionally include utilities API last to generate classes based on the Sass map in `_utilities.scss`
@import "bootstrap/utilities/api";
// 8. Add additional custom code here
@import "custom"; // Theme SASS
@import "styles"; // Site SASS (assets/sass/styles.scss)

View File

@ -1,61 +0,0 @@
.home {
--bd-purple: #4c0bce;
--bd-violet: #712cf9;
--bd-accent: #ffe484;
--bd-violet-rgb: 112.520718,44.062154,249.437846;
--bd-accent-rgb: 255,228,132;
--bd-pink-rgb: 214,51,132;
.bd-masthead {
padding: 3rem 0;
background-image: linear-gradient(180deg, rgba(var(--bs-body-bg-rgb), 0.01), rgba(var(--bs-body-bg-rgb), 1) 85%),radial-gradient(ellipse at top left, rgba(var(--bs-primary-rgb), 0.5), transparent 50%),radial-gradient(ellipse at top right, rgba(var(--bd-accent-rgb), 0.5), transparent 50%),radial-gradient(ellipse at center right, rgba(var(--bd-violet-rgb), 0.5), transparent 50%),radial-gradient(ellipse at center left, rgba(var(--bd-pink-rgb), 0.5), transparent 50%);
}
.btn-bd-primary {
--bs-btn-font-weight: 600;
--bs-btn-color: var(--bs-white);
--bs-btn-bg: var(--bd-violet);
--bs-btn-border-color: var(--bd-violet);
--bs-btn-border-radius: .5rem;
--bs-btn-hover-color: var(--bs-white);
--bs-btn-hover-bg: #6528e0;
--bs-btn-hover-border-color: #6528e0;
--bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
--bs-btn-active-color: var(--bs-btn-hover-color);
--bs-btn-active-bg: #5a23c8;
--bs-btn-active-border-color: #5a23c8;
}
}
.navbar {
@extend .navbar-dark;
--bd-violet-rgb: 112.520718,44.062154,249.437846;
padding: .75rem 0;
background-color: transparent;
background-image: linear-gradient(to bottom, rgba(var(--bd-violet-rgb), 1), rgba(var(--bd-violet-rgb), 0.95));
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);
}
.text-violet {
color: #6528e0;
}
.list {
.card {
transition: transform 0.2s ease-in-out;
&:hover {
transform: scale(1.01);
}
}
}
.navbar-brand {
transition: transform 0.2s ease-in-out;
&:hover {
transform: rotate(-2deg) scale(1.1);
}
}

View File

@ -1,52 +1,77 @@
baseURL = 'https://barbel.synology.me/'
title = "Généalogie et informatique"
author = "Yannick Barbel"
copyright = "Yannick Barbel - 2023"
baseurl = "barbel.synology.me"
title = "Mon Blog"
languageCode = "fr-fr"
theme = "hello-friend-ng"
paginate = 10
languageCode = "fr" # For the internal RSS template (and for the html lang attribute)
DefaultContentLanguage = "fr"
timeZone = 'Europe/Paris'
[params]
dateform = "2 Jan 2006"
dateformShort = "2 Jan"
dateformNum = "02-01-2006"
dateformNumTime = "02-01-2006 15:04"
# Multilingual
defaultContentLanguage = "fr"
defaultContentLanguageInSubdir = false
# Subtitle for home
homeSubtitle = "Le blog de la famille Barbel"
theme = "hugo-bootstrap-theme"
themesdir = "./themes"
# Set disableReadOtherPosts to true in order to hide the links to other posts.
disableReadOtherPosts = false
disableHugoGeneratorInject = true
enableRobotsTXT = true
enableGitInfo = true
enableEmoji = true
#sectionPagesMenu = "main"
#googleAnalytics = "UA-1511XXXX-X"
# Enable sharing buttons, if you like
enableSharingButtons = true
# Show a global language switcher in the navigation bar
enableGlobalLanguageMenu = true
[frontmatter]
date = ["date", "publishDate", "lastmod"]
lastmod = ["lastmod", ":fileModTime", ":default"]
# Metadata mostly used in document's head
description = "Yann64's Blog"
images = [""]
[taxonomies]
tag = "tags"
category = "categories"
series = 'series'
author = "authors"
category = "blog"
tag = "tags"
series = "series"
[sitemap]
changefreq = "weekly"
filename = "sitemap.xml"
priority = 0.5
[languages]
[languages.en]
title = "Les Barbel"
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
[permalinks]
# post = "/post/:title/"
[languages.en.params]
keywords = "computing, minecraft, genealogy"
subtitle = "Barbel family's blog"
readOtherPosts = "Read other posts"
[module]
[module.hugoVersion]
extended = true
min = "0.99.1"
max = ""
[[module.mounts]]
source = "assets"
target = "assets"
[[module.mounts]]
source = "static"
target = "static"
[languages.en.params.logo]
logoText = "return home"
logoHomeLink = "/en"
# or
#
# path = "/img/your-example-logo.svg"
# alt = "Your example logo alt text"
[languages.fr]
title = "Les Barbel"
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
[languages.fr.params]
keywords = "informatique, minecraft, généalogie"
subtitle = "Le blog de la famille Barbel"
readOtherPosts = "Lire d'autres publications"
[languages.fr.params.logo]
logoText = "retour à l'acceuil"
logoHomeLink = "/fr"
# And you can even create generic menu
[[menu.main]]
identifier = "blog"
name = "Blog"
url = "/posts"
[[menu.main]]
identifier = "minecraft"
name = "Minecraft"
url = "/pages/minecraft"
[[menu.main]]
identifier = "dev"
name = "Computing"
url = "/pages/computing"

View File

@ -1,13 +0,0 @@
[fr]
languageName = "Français"
languageCode = "fr-FR"
weight = 10
[fr.params]
languageISO = "FR"
[en]
languageName = "English"
languageCode = "en-US"
weight = 20
[en.params]
languageISO = "EN"

View File

@ -1,29 +0,0 @@
defaultMarkdownHandler = "goldmark"
[goldmark]
[goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[goldmark.parser]
autoHeadingID = true
[goldmark.parser.attribute]
block = true
title = true
[goldmark.renderer]
hardWraps = false
unsafe = true
xHTML = false
[tableOfContents]
endLevel = 3
ordered = false
startLevel = 2

View File

@ -1,50 +0,0 @@
[[main]]
name = "Acceuil"
url = ""
weight = 10
[[main]]
name = "A propos"
url = "about"
weight = 20
[[main]]
identifier = "category"
name = "Categories"
weight = 40
[[main]]
name = "All"
url = "post"
weight = 100
parent = "category"
[[main]]
name = "Généalogie"
url = "tags/genealogy"
weight = 20
parent = "category"
[[main]]
name = "Haiku"
url = "tags/haiku"
weight = 30
parent = "category"
[[main]]
identifier = "docs"
name = "Docs"
url = "page"
weight = 50
#[[social]]
#name = "GitHub"
#pre = "<svg xmlns='http://www.w3.org/2000/svg' class='feather feather-github'><use href='/hugo-bootstrap-theme/images/feather/feather-sprite.svg#github'/></svg>"
#url = "https://github.com/filipecarneiro/hugo-bootstrap-theme/"
#weight = 10
#[[social]]
#name = "Twitter"
#pre = "<svg xmlns='http://www.w3.org/2000/svg' class='feather feather-twitter'><use href='/hugo-bootstrap-theme/images/feather/feather-sprite.svg#twitter'/></svg>"
#url = "https://twitter.com/jfilipecarneiro/"
#weight = 20

View File

@ -1,50 +0,0 @@
[[main]]
name = "Home"
url = ""
weight = 10
[[main]]
name = "About"
url = "about"
weight = 20
[[main]]
identifier = "category"
name = "Categories"
weight = 40
[[main]]
name = "All"
url = "post"
weight = 100
parent = "category"
[[main]]
name = "Genealogy"
url = "tags/genealogy"
weight = 20
parent = "category"
[[main]]
name = "Haiku"
url = "tags/haiku"
weight = 30
parent = "category"
[[main]]
identifier = "docs"
name = "Docs"
url = "page"
weight = 50
#[[social]]
#name = "GitHub"
#pre = "<svg xmlns='http://www.w3.org/2000/svg' class='feather feather-github'><use href='/hugo-bootstrap-theme/images/feather/feather-sprite.svg#github'/></svg>"
#url = "https://github.com/filipecarneiro/hugo-bootstrap-theme/"
#weight = 10
#[[social]]
#name = "Twitter"
#pre = "<svg xmlns='http://www.w3.org/2000/svg' class='feather feather-twitter'><use href='/hugo-bootstrap-theme/images/feather/feather-sprite.svg#twitter'/></svg>"
#url = "https://twitter.com/jfilipecarneiro/"
#weight = 20

View File

@ -1,30 +0,0 @@
# Site Params
# Open Graph, Twitter Cards and schema.org Thing and Article (in posts)
# https://gohugo.io/templates/internal/#open-graph
# https://gohugo.io/templates/internal/#twitter-cards
# https://schema.org/Thing
# https://schema.org/Article
description = "Publications liées à mes sujets favorits."
images = ['images/logo.svg','images/site-feature-image.png']
mainMenuLogo = "images/logo.svg"
# For favicons
## Chrome Browser
themeColor = "#fff"
# Alert
alert = false
alertDismissable = false
alertText = "Introducing this new service! <a class=\"alert-link stretched-link\" href=\"https://salvus.site/\">Check out Total Security</a>"
# Pre-footer
footerAbout = false
footerAboutTitle = "Few Words About Us"
footerAboutText = "We protect your website so you can provide a safe environment to build trust and improve the user experience of your visitors.<br/><br/>Salvus Site is the partner that you can rely on for preventive and reactive cybersecurity."
[options]
bootStrapJs = true
breadCrumb = true
listCategoryFilter = true
listTagFilter = true

View File

@ -1,8 +0,0 @@
---
title: "About"
draft: false
---
## About this site
Lorem ipsum dolor sic amet.

View File

@ -1,8 +0,0 @@
---
title: "A propos"
draft: false
---
## A propos de ce site
Lorem ipsum dolor sic amet.

View File

@ -1,5 +0,0 @@
---
title: Yannick Barbel
---
Yannick Barbel

View File

@ -1,6 +0,0 @@
+++
aliases = ["pages", "docs"]
title = "Docs"
authors = ["Filipe Carneiro"]
tags = ["index"]
+++

View File

@ -1,19 +0,0 @@
---
title: "Minecraft"
author: "yann64"
draft: false
---
## Minecraft
Minecraft server for the community.
### Minecaft Java
- barbel.synology.me:25565
- barbel.synology.me:25566
### Minecaft Bedrock
- barbel.synology.me:19132
- barbel.synology.me:19134

View File

@ -1,19 +0,0 @@
---
title: "Minecraft"
author: "yann64"
draft: false
---
## Minecraft
Serveur minecraft pour la communauté.
### Minecaft Java
- barbel.synology.me:25565
- barbel.synology.me:25566
### Minecaft Bedrock
- barbel.synology.me:19132
- barbel.synology.me:19134

View File

@ -0,0 +1,22 @@
---
title: 'Computing resources'
author: "yann64"
date: 2023-10-16T09:03:20
tag: "dev"
category: "computing"
draft: false
---
## Private git hosting
- Private Gitea instance : https://git.barbel.synology.me/
## Haiku & BeOS mirrors/archives
- Haiku site mirror : https://barbel.synology.me/haiku/
- Haiku git repositories mirrors :
- Haiku : https://git.barbel.synology.me/haiku
- Haiku Archive : https://git.barbel.synology.me/haikuarchives
- Haikuports : https://git.barbel.synology.me/haikuports
- Old BeOS site mirror : https://barbel.synology.me/museum/beos/index.html

View File

@ -0,0 +1,22 @@
---
title: 'Ressources informatiques'
author: "yann64"
date: 2023-10-16T09:03:20
tag: "dev"
category: "informatique"
draft: false
---
## Private git hosting
- Instance Gitea privée : https://git.barbel.synology.me/
## Haiku & BeOS mirrors/archives
- Mirroir du site du projet Haiku : https://barbel.synology.me/haiku/
- Mirroir des dépôts de source du projet Haiku :
- Haiku : https://git.barbel.synology.me/haiku
- Haiku Archive : https://git.barbel.synology.me/haikuarchives
- Haikuports : https://git.barbel.synology.me/haikuports
- Mirroir de l'ancien site de BeOS : https://barbel.synology.me/museum/beos/index.html

View File

@ -0,0 +1,21 @@
---
title: 'Minecraft Servers'
author: "yann64"
date: 2023-10-16T09:03:20
tag: "minecraft"
category: "minecraft"
draft: false
---
## Minecraft Java Servers
- Survival : barbel.synology.me:25565
- Creative : barbel.synology.me:25566
- Maps : https://barbel.synology.me/bluemap/
## Minecraft Bedrock Servers
- Survival : barbel.synology.me:19132
- Creative : barbel.synology.me:19134

View File

@ -0,0 +1,19 @@
---
title: 'Serveurs Minecraft'
author: "yann64"
date: 2023-10-16T09:03:20
tag: "minecraft"
category: "minecraft"
draft: false
---
## Serveurs Minecraft Java
- Survie : barbel.synology.me:25565
- Créatif : barbel.synology.me:25566
- Carte : https://barbel.synology.me/bluemap/
## Serveurs Minecraft Bedrock
- Survie : barbel.synology.me:19132
- Créatif : barbel.synology.me:19134

View File

@ -0,0 +1,6 @@
+++
aliases = ["posts", "blog"]
title = "Articles"
authors = ["Yannick Barbel"]
tags = ["index"]
+++

View File

@ -9,4 +9,4 @@ draft: false
## Test
Mise en place d'un site pour partager sur mes passions.
A new site.

View File

@ -1,5 +1,5 @@
---
title: "Hello, world!"
title: 'Hello, world!'
author: "yann64"
date: 2023-10-16T09:03:20
tag: "haiku"
@ -9,4 +9,4 @@ draft: false
## Test
Mise en place d'unsite pour partager sur mes passions.
Mise en place d'un site pour partager sur mes passions.

View File

@ -1,5 +0,0 @@
---
title: Haiku
---
Haiku

View File

@ -1,29 +0,0 @@
{{ define "main" }}
<section class="section bd-masthead">
<div class="container-xxl">
<div class="col-md-8 mx-auto text-center my-5">
<img class="d-block mx-auto mb-3" src="{{ `images/logo.svg` | relURL }}" width="150" height="150" alt="Bootstrap">
<h1 class="display-4 fw-semibold mb-3">{{ .Site.Title }}</h1>
<p class="lead mb-4">{{ .Site.Params.Description }}</p>
<a class="btn btn-bd-primary btn-lg px-4 mb-2" href="https://github.com/filipecarneiro/hugo-bootstrap-theme" role="button">Get Started</a>
<p class="text-muted mb-0">Open-source MIT Licensed.</p>
</div>
</div>
</section>
<section class="section container">
{{ partial "features" . }}
</section>
<section class="section container">
<h3 class="text-secondary text-center my-5">Latest Posts</h3>
{{ partial "latest-posts" . }}
</section>
<section class="section container">
<h3 class="text-secondary text-center my-5">Featured Pages</h3>
{{ partial "featured-pages" . }}
</section>
{{ end }}

View File

@ -1,30 +0,0 @@
<div class="row row-cols-1 g-4">
{{ range .Site.Taxonomies.tags.featured }}
<div class="col">
<div class="card">
<div class="card-body">
<h4 class="card-title">
<a class="stretched-link text-primary text-decoration-none" href="{{ .Permalink }}">
{{ .Title }}
</a>
</h4>
<p class="text-text">
{{ with .Params.description }}
{{ . }}
{{ else }}
{{ .Summary | truncate 400 }}
{{ end }}
</p>
<p class="text-text text-muted">
<small>
{{ .Lastmod | time.Format ":date_long" }}
</small>
</p>
</div>
</div>
</div>
{{ end }}
</div>

View File

@ -1,42 +0,0 @@
<!-- Featueres section -->
<div class="row justify-content-center text-center mt-lg-3">
<div class="col-lg-4">
<svg xmlns='http://www.w3.org/2000/svg' class='feather text-violet feather-big' width="4em" height="4em">
<use href="{{ `images/feather/feather-sprite.svg#shield` | relURL }}"/>
</svg>
<h2 class="h2">Security aware <small class="d-none">🛡️</small></h2>
<p>Get A+ scores on <a href="https://observatory.mozilla.org/" target="_blank" rel="noopener">Mozilla Observatory</a>
out of the box. Easily change the default Security Headers to suit your needs.</p>
</div>
<div class="col-lg-4">
<svg xmlns='http://www.w3.org/2000/svg' class='feather text-violet feather-big' width="4em" height="4em">
<use href="{{ `images/feather/feather-sprite.svg#zap` | relURL }}"/>
</svg>
<h2 class="h2">Fast by default <small class="d-none">🚀</small></h2>
<p>Get 100 scores on <a href="https://googlechrome.github.io/lighthouse/viewer/?gist=1f990bcb2d769bb4e82e7fc7a8be2b1f" target="_blank" rel="noopener">Google Lighthouse</a>
by default. Hugo Bootstrap Theme removes unused css, prefetches links, and lazy loads images.</p>
</div>
<div class="col-lg-4">
<svg xmlns='http://www.w3.org/2000/svg' class='feather text-violet feather-big' width="4em" height="4em">
<use href="{{ `images/feather/feather-sprite.svg#trending-up` | relURL }}"/>
</svg>
<h2 class="h2">SEO-ready <small class="d-none">📈</small></h2>
<p>Use sensible defaults for structured data, <a href="https://ogp.me/" target="_blank" rel="noopener">open graph</a>, and <a href="https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/abouts-cards" target="_blank" rel="noopener">Twitter cards</a>. Or easily change the Search Engine Optimization settings to your liking.</p>
</div>
</div>
<div class="row justify-content-center text-center mt-lg-3">
<div class="col-lg-4">
<h2 class="h2">Hugo <small class="d-none">🦉</small></h2>
<p><a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a> is one of the most popular open-source static site generators. With its amazing speed and flexibility, Hugo makes building websites fun again.</p>
</div>
<div class="col-lg-4">
<h2 class="h2">Bootstrap <small class="d-none"></small></h2>
<p>Powerful, extensible, and feature-packed <a href="https://getbootstrap.com/" target="_blank" rel="noopener">frontend toolkit</a>. Build and customize with Sass, utilize prebuilt grid system and components, and bring projects to life with powerful JavaScript plugins.</p>
</div>
<div class="col-lg-4">
<h2 class="h2">Page layouts <small class="d-none">🧰</small></h2>
<p>Build pages with a landing page, blog, or documentation layout. Add custom sections and components to suit your needs.</p>
</div>
</div>

View File

@ -1,34 +0,0 @@
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "post" ) }}
<div class="col">
<div class="card h-100">
<div class="card-body">
<h4 class="card-title">
<a class="stretched-link text-primary text-decoration-none" href="{{ .Permalink }}">
{{ .Title }}
</a>
</h4>
{{ with .Params.authors }}
<p class="card-subtitle text-muted">
by {{ index . 0 }}
</p>
{{ end }}
<p class="card-text mt-3">
{{ with .Params.description }}
{{ . }}
{{ else }}
{{ .Summary | truncate 200 }}
{{ end }}
</p>
</div>
<div class="card-footer">
<small class="text-muted">{{ .Date | time.Format ":date_long" }}</small>
</div>
</div>
</div>
{{ end }}
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" width="1em" height="1em"><svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-shield-check" fill="#14bf98" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M5.443 1.991a60.17 60.17 0 0 0-2.725.802.454.454 0 0 0-.315.366C1.87 7.056 3.1 9.9 4.567 11.773c.736.94 1.533 1.636 2.197 2.093.333.228.626.394.857.5.116.053.21.089.282.11A.73.73 0 0 0 8 14.5c.007-.001.038-.005.097-.023.072-.022.166-.058.282-.111.23-.106.525-.272.857-.5a10.197 10.197 0 0 0 2.197-2.093C12.9 9.9 14.13 7.056 13.597 3.159a.454.454 0 0 0-.315-.366c-.626-.2-1.682-.526-2.725-.802C9.491 1.71 8.51 1.5 8 1.5c-.51 0-1.49.21-2.557.491zm-.256-.966C6.23.749 7.337.5 8 .5c.662 0 1.77.249 2.813.525a61.09 61.09 0 0 1 2.772.815c.528.168.926.623 1.003 1.184.573 4.197-.756 7.307-2.367 9.365a11.191 11.191 0 0 1-2.418 2.3 6.942 6.942 0 0 1-1.007.586c-.27.124-.558.225-.796.225s-.526-.101-.796-.225a6.908 6.908 0 0 1-1.007-.586 11.192 11.192 0 0 1-2.417-2.3C2.167 10.331.839 7.221 1.412 3.024A1.454 1.454 0 0 1 2.415 1.84a61.11 61.11 0 0 1 2.772-.815z"></path>
<path fill-rule="evenodd" d="M10.854 6.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 8.793l2.646-2.647a.5.5 0 0 1 .708 0z"></path>
</svg><style>@media (prefers-color-scheme: light) { :root { filter: none; } }
@media (prefers-color-scheme: dark) { :root { filter: contrast(0.8333333333333334) brightness(1.7); } }
</style></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1 @@
Subproject commit 71cee08f56058d234e830f2ec0fd28623b8b4dbd

@ -1 +0,0 @@
Subproject commit b9c16a29ae6a38271ff1c8be5f47da6ee3246d05