. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
2 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/.lycheeignore:
--------------------------------------------------------------------------------
1 | https://github.com/thegeeklab/.+/edit/main/.*
2 | https://unsplash.com.*
3 | https://www.color-hex.com.*
4 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/VERSION:
--------------------------------------------------------------------------------
1 | v0.45.0
2 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/archetypes/docs.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "{{ .Name | humanize | title }}"
3 | weight: 1
4 | # geekdocFlatSection: false
5 | # geekdocToc: 6
6 | # geekdocHidden: false
7 | ---
8 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/archetypes/posts.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "{{ replace .Name "-" " " | title }}"
3 | date: {{ .Date }}
4 | ---
5 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/assets/search/config.json:
--------------------------------------------------------------------------------
1 | {{- $searchDataFile := printf "search/%s.data.json" .Language.Lang -}}
2 | {{- $searchData := resources.Get "search/data.json" | resources.ExecuteAsTemplate $searchDataFile . | resources.Minify -}}
3 | {
4 | "dataFile": {{ $searchData.RelPermalink | jsonify }},
5 | "indexConfig": {{ .Site.Params.geekdocSearchConfig | jsonify }},
6 | "showParent": {{ if .Site.Params.geekdocSearchShowParent }}true{{ else }}false{{ end }},
7 | "showDescription": {{ if .Site.Params.geekdocSearchshowDescription }}true{{ else }}false{{ end }}
8 | }
9 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/assets/search/data.json:
--------------------------------------------------------------------------------
1 | [
2 | {{ range $index, $page := (where .Site.Pages "Params.geekdocProtected" "ne" true) }}
3 | {{ if ne $index 0 }},{{ end }}
4 | {
5 | "id": {{ $index }},
6 | "href": "{{ $page.RelPermalink }}",
7 | "title": {{ (partial "utils/title" $page) | jsonify }},
8 | "parent": {{ with $page.Parent }}{{ (partial "utils/title" .) | jsonify }}{{ else }}""{{ end }},
9 | "content": {{ $page.Plain | jsonify }},
10 | "description": {{ $page.Summary | plainify | jsonify }}
11 | }
12 | {{ end }}
13 | ]
14 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/images/readme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/images/readme.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/images/screenshot.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/images/tn.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-codeblock-mermaid.html:
--------------------------------------------------------------------------------
1 |
2 | {{ if not (.Page.Scratch.Get "mermaid") }}
3 |
4 |
5 | {{ .Page.Scratch.Set "mermaid" true }}
6 | {{ end }}
7 |
8 |
9 |
10 | {{- .Inner -}}
11 |
12 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-image.html:
--------------------------------------------------------------------------------
1 |
6 | {{- /* Drop trailing newlines */ -}}
7 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/_default/_markup/render-link.html:
--------------------------------------------------------------------------------
1 | {{- $raw := or (hasPrefix .Text "
12 | {{- .Text | safeHTML -}}
13 |
14 | {{- /* Drop trailing newlines */ -}}
15 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/_default/list.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 | {{ partial "page-header" . }}
3 |
4 |
5 |
8 | {{ partial "utils/title" . }}
9 | {{ partial "utils/content" . }}
10 |
11 | {{ end }}
12 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/_default/single.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 | {{ partial "page-header" . }}
3 |
4 |
5 |
8 | {{ partial "utils/title" . }}
9 | {{ partial "utils/content" . }}
10 |
11 | {{ end }}
12 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/foot.html:
--------------------------------------------------------------------------------
1 | {{ if default true .Site.Params.geekdocSearch }}
2 |
3 | {{- $searchConfigFile := printf "search/%s.config.json" .Language.Lang -}}
4 | {{- $searchConfig := resources.Get "search/config.json" | resources.ExecuteAsTemplate $searchConfigFile . | resources.Minify -}}
5 | {{- $searchConfig.Publish -}}
6 | {{ end }}
7 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/head/custom.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/head/favicons.html:
--------------------------------------------------------------------------------
1 |
2 |
8 |
14 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/head/meta.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {{ hugo.Generator }}
6 |
7 | {{ $keywords := default .Site.Params.Keywords .Keywords }}
8 |
9 | {{- with partial "utils/description" . }}
10 |
11 | {{- end }}
12 | {{- with $keywords }}
13 |
14 | {{- end }}
15 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/head/microformats.html:
--------------------------------------------------------------------------------
1 | {{ partial "microformats/opengraph.html" . }}
2 | {{ partial "microformats/twitter_cards.html" . }}
3 | {{ partial "microformats/schema" . }}
4 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/head/rel-me.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/microformats/twitter_cards.html:
--------------------------------------------------------------------------------
1 | {{- with partial "utils/featured" . }}
2 |
3 | {{- else }}
4 |
5 | {{- end }}
6 |
7 | {{- with partial "utils/featured" . }}
8 |
9 | {{- end }}
10 | {{- with partial "utils/description" . }}
11 |
12 | {{- end }}
13 | {{- with .Site.Social.twitter -}}
14 |
15 | {{- end }}
16 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/search.html:
--------------------------------------------------------------------------------
1 | {{ if default true .Site.Params.geekdocSearch }}
2 |
16 | {{ end }}
17 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/svg-icon-symbols.html:
--------------------------------------------------------------------------------
1 | {{ range resources.Match "sprites/*.svg" }}
2 | {{ printf "" . | safeHTML }}
3 | {{ .Content | safeHTML }}
4 | {{ end }}
5 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/utils/content.html:
--------------------------------------------------------------------------------
1 | {{ $content := .Content }}
2 |
3 | {{ $content = $content | replaceRE `` `` | safeHTML }}
4 | {{ $content = $content | replaceRE `()` ` ${1}
` | safeHTML }}
5 |
6 | {{ return $content }}
7 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/utils/description.html:
--------------------------------------------------------------------------------
1 | {{ $isPage := or (and (ne .Type "posts") (in "section page" .Kind )) (and (eq .Type "posts") (eq .Kind "page")) }}
2 | {{ $description := "" }}
3 |
4 | {{ if .Description }}
5 | {{ $description = .Description }}
6 | {{ else }}
7 | {{ if $isPage }}
8 | {{ $description = .Summary }}
9 | {{ else if .Site.Params.description }}
10 | {{ $description = .Site.Params.description }}
11 | {{ end }}
12 | {{ end }}
13 |
14 | {{ return $description }}
15 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/utils/featured.html:
--------------------------------------------------------------------------------
1 | {{ $img := "" }}
2 |
3 | {{ with $source := ($.Resources.ByType "image").GetMatch "{*feature*,*cover*,*thumbnail*}" }}
4 | {{ $featured := .Fill (printf "1200x630 %s" (default "Smart" .Params.anchor)) }}
5 | {{ $img = $featured.Permalink }}
6 | {{ else }}
7 | {{ with default $.Site.Params.images $.Params.images }}
8 | {{ $img = index . 0 | absURL }}
9 | {{ end }}
10 | {{ end }}
11 |
12 | {{ return $img }}
13 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/partials/utils/title.html:
--------------------------------------------------------------------------------
1 | {{ $title := "" }}
2 |
3 | {{ if .Title }}
4 | {{ $title = .Title }}
5 | {{ else if and .IsSection .File }}
6 | {{ $title = path.Base .File.Dir | humanize | title }}
7 | {{ else if and .IsPage .File }}
8 | {{ $title = .File.BaseFileName | humanize | title }}
9 | {{ end }}
10 |
11 | {{ return $title }}
12 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/posts/single.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 |
3 |
9 |
10 | {{ partial "utils/content" . }}
11 |
12 |
13 | {{ end }}
14 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow: /tags/*
3 |
4 | Sitemap: {{ "sitemap.xml" | absURL }}
5 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/button.html:
--------------------------------------------------------------------------------
1 | {{- $ref := "" }}
2 | {{- $class := "" }}
3 | {{- $size := default "regular" (.Get "size" | lower) }}
4 |
5 | {{- if not (in (slice "regular" "large") $size) }}
6 | {{- $size = "regular" }}
7 | {{- end }}
8 |
9 | {{- with .Get "href" }}
10 | {{- $ref = . }}
11 | {{- end }}
12 |
13 | {{- with .Get "relref" }}
14 | {{- $ref = relref $ . }}
15 | {{- end }}
16 |
17 | {{- with .Get "class" }}
18 | {{- $class = . }}
19 | {{- end }}
20 |
21 |
22 |
23 |
27 | {{ $.Inner }}
28 |
29 |
30 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/columns.html:
--------------------------------------------------------------------------------
1 | {{- $size := default "regular" (.Get "size" | lower) }}
2 |
3 | {{- if not (in (slice "regular" "large" "small") $size) }}
4 | {{- $size = "regular" }}
5 | {{- end }}
6 |
7 |
8 |
9 | {{- range split .Inner "<--->" }}
10 |
11 | {{ . | $.Page.RenderString -}}
12 |
13 | {{- end }}
14 |
15 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/expand.html:
--------------------------------------------------------------------------------
1 | {{ $id := substr (sha1 .Inner) 0 8 }}
2 |
3 |
7 |
8 |
9 | {{ .Inner | $.Page.RenderString }}
10 |
11 |
12 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/hint.html:
--------------------------------------------------------------------------------
1 | {{ $type := default "note" (.Get "type") }}
2 | {{ $icon := .Get "icon" }}
3 | {{ $title := default ($type | title) (.Get "title") }}
4 |
5 |
6 |
7 |
8 | {{- with $icon -}}
9 |
10 | {{ $title }}
11 | {{- else -}}
12 |
13 | {{- end -}}
14 |
15 | {{ .Inner | $.Page.RenderString }}
16 |
17 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/icon.html:
--------------------------------------------------------------------------------
1 | {{ $id := .Get 0 }}
2 |
3 | {{- with $id -}}
4 |
5 | {{- end -}}
6 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/include.html:
--------------------------------------------------------------------------------
1 | {{ $file := .Get "file" }}
2 | {{ $page := .Site.GetPage $file }}
3 | {{ $type := .Get "type" }}
4 | {{ $language := .Get "language" }}
5 | {{ $options :=.Get "options" }}
6 |
7 |
8 |
9 | {{- if (.Get "language") -}}
10 | {{- highlight ($file | readFile) $language (default "linenos=table" $options) -}}
11 | {{- else if eq $type "html" -}}
12 | {{- $file | readFile | safeHTML -}}
13 | {{- else if eq $type "page" -}}
14 | {{- with $page }}{{ .Content }}{{ end -}}
15 | {{- else -}}
16 | {{- $file | readFile | $.Page.RenderString -}}
17 | {{- end -}}
18 |
19 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/katex.html:
--------------------------------------------------------------------------------
1 |
2 | {{ if not (.Page.Scratch.Get "katex") }}
3 |
4 |
8 |
9 | {{ .Page.Scratch.Set "katex" true }}
10 | {{ end }}
11 |
12 |
13 |
14 | {{ cond (in .Params "display") "\\[" "\\(" -}}
15 | {{- trim .Inner "\n" -}}
16 | {{- cond (in .Params "display") "\\]" "\\)" -}}
17 |
18 | {{- /* Drop trailing newlines */ -}}
19 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/mermaid.html:
--------------------------------------------------------------------------------
1 |
2 | {{ if not (.Page.Scratch.Get "mermaid") }}
3 |
4 |
5 | {{ .Page.Scratch.Set "mermaid" true }}
6 | {{ end }}
7 |
8 |
9 |
10 | {{- .Inner -}}
11 |
12 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/progress.html:
--------------------------------------------------------------------------------
1 | {{- $value := default 0 (.Get "value") -}}
2 | {{- $title := .Get "title" -}}
3 | {{- $icon := .Get "icon" -}}
4 |
5 |
6 |
7 |
8 |
9 | {{ with $icon -}}
10 |
11 | {{- end }}
12 | {{ with $title }}{{ . }}{{ end }}
13 |
14 |
{{ $value }}%
15 |
16 |
23 |
24 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/tab.html:
--------------------------------------------------------------------------------
1 | {{- if .Parent }}
2 | {{- $name := .Get 0 }}
3 | {{- $group := printf "tabs-%s" (.Parent.Get 0) }}
4 |
5 | {{- if not (.Parent.Scratch.Get $group) }}
6 | {{- .Parent.Scratch.Set $group slice }}
7 | {{- end }}
8 |
9 | {{- .Parent.Scratch.Add $group (dict "Name" $name "Content" .Inner) }}
10 | {{- else }}
11 | {{ errorf "%q: 'tab' shortcode must be inside 'tabs' shortcode" .Page.Path }}
12 | {{- end }}
13 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/tabs.html:
--------------------------------------------------------------------------------
1 | {{- if .Inner }}{{ end }}
2 | {{- $id := .Get 0 }}
3 | {{- $group := printf "tabs-%s" $id }}
4 |
5 |
6 |
7 | {{- range $index, $tab := .Scratch.Get $group }}
8 |
15 |
18 |
19 | {{ .Content | $.Page.RenderString }}
20 |
21 | {{- end }}
22 |
23 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/layouts/shortcodes/toc.html:
--------------------------------------------------------------------------------
1 | {{- $format := default "html" (.Get "format") }}
2 | {{- $tocLevels := default (default 6 .Site.Params.geekdocToC) .Page.Params.geekdocToC }}
3 |
4 | {{- if and $tocLevels .Page.TableOfContents -}}
5 | {{- if not (eq ($format | lower) "raw") -}}
6 |
7 | {{ .Page.TableOfContents }}
8 |
9 |
10 | {{- else -}}
11 | {{ .Page.TableOfContents }}
12 | {{- end -}}
13 | {{- end -}}
14 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/custom.css:
--------------------------------------------------------------------------------
1 | /* You can add custom styles here. */
2 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-144x144.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-192x192.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-256x256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-256x256.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-36x36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-36x36.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-384x384.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-384x384.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-48x48.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-512x512.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-72x72.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/android-chrome-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/android-chrome-96x96.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-1024x1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-1024x1024.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-114x114.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-120x120.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-144x144.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-152x152.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-167x167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-167x167.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-180x180.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-57x57.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-60x60.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-72x72.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-76x76.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon-precomposed.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-icon.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1125x2436.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1125x2436.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1136x640.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1136x640.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1170x2532.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1170x2532.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1179x2556.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1179x2556.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2208.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2208.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2688.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1242x2688.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1284x2778.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1284x2778.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1290x2796.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1290x2796.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1334x750.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1334x750.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1488x2266.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1488x2266.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1536x2048.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1536x2048.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1620x2160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1620x2160.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1640x2160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1640x2160.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2224.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2224.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2388.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1668x2388.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1792x828.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-1792x828.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x1536.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x1536.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x2732.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2048x2732.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1620.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1620.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1640.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2160x1640.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2208x1242.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2208x1242.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2224x1668.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2224x1668.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2266x1488.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2266x1488.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2388x1668.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2388x1668.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2436x1125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2436x1125.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2532x1170.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2532x1170.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2556x1179.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2556x1179.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2688x1242.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2688x1242.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2732x2048.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2732x2048.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2778x1284.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2778x1284.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2796x1290.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-2796x1290.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-640x1136.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-640x1136.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-750x1334.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-750x1334.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-828x1792.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/apple-touch-startup-image-828x1792.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | #efefef
10 |
11 |
12 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/favicon-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/favicon-48x48.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/favicon.ico
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/favicon.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/mstile-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/mstile-144x144.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/mstile-150x150.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/mstile-310x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/mstile-310x150.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/mstile-310x310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/mstile-310x310.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/favicon/mstile-70x70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/favicon/mstile-70x70.png
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/GeekdocIcons.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_AMS-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Bold.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Caligraphic-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Bold.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Fraktur-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Bold.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-BoldItalic.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Italic.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Main-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-BoldItalic.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Math-Italic.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Bold.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Italic.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_SansSerif-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Script-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size1-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size2-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size3-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Size4-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/KaTeX_Typewriter-Regular.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationMono.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Bold.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-BoldItalic.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationSans-Italic.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/LiberationSans.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daveRendon/azinsider/7791f6ac8ed7079d8b174746ea6fa005a6b14185/docs/themes/hugo-geekdoc/static/fonts/Metropolis.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/481-d115773f.chunk.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable
3 | Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com)
4 | Licensed under The MIT License (http://opensource.org/licenses/MIT)
5 | */
6 |
7 | /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */
8 |
9 | /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */
10 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/637-ae48f964.chunk.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | * Wait for document loaded before starting the execution
3 | */
4 |
5 | /*! @license DOMPurify 3.0.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.3/LICENSE */
6 |
7 | /*! Check if previously processed */
8 |
9 | /*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
10 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/637-e93ad57f.chunk.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | * Wait for document loaded before starting the execution
3 | */
4 |
5 | /*! @license DOMPurify 3.0.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.6/LICENSE */
6 |
7 | /*! Check if previously processed */
8 |
9 | /*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
10 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/771-5a2eb3e9.chunk.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable
3 | Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com)
4 | Licensed under The MIT License (http://opensource.org/licenses/MIT)
5 | */
6 |
7 | /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */
8 |
9 | /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */
10 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/807-54a776b6.chunk.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable
3 | Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com)
4 | Licensed under The MIT License (http://opensource.org/licenses/MIT)
5 | */
6 |
7 | /*! Bezier curve function generator. Copyright Gaetan Renaudeau. MIT License: http://en.wikipedia.org/wiki/MIT_License */
8 |
9 | /*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */
10 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/main-09678822.bundle.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | * clipboard.js v2.0.11
3 | * https://clipboardjs.com/
4 | *
5 | * Licensed MIT © Zeno Rocha
6 | */
7 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/main-924a1933.bundle.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | * clipboard.js v2.0.11
3 | * https://clipboardjs.com/
4 | *
5 | * Licensed MIT © Zeno Rocha
6 | */
7 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/main-fbb9c8b0.bundle.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | * clipboard.js v2.0.11
3 | * https://clipboardjs.com/
4 | *
5 | * Licensed MIT © Zeno Rocha
6 | */
7 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/mermaid-1d12d9d1.bundle.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | * Wait for document loaded before starting the execution
3 | */
4 |
5 | /*! @license DOMPurify 3.0.11 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.11/LICENSE */
6 |
7 | /*! Check if previously processed */
8 |
9 | /*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
10 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/search-83320133.bundle.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /**!
2 | * FlexSearch.js v0.7.31 (Compact)
3 | * Copyright 2018-2022 Nextapps GmbH
4 | * Author: Thomas Wilkerling
5 | * Licence: Apache-2.0
6 | * https://github.com/nextapps-de/flexsearch
7 | */
8 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/search-95c697e2.bundle.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /**!
2 | * FlexSearch.js
3 | * Author and Copyright: Thomas Wilkerling
4 | * Licence: Apache-2.0
5 | * Hosted by Nextapps GmbH
6 | * https://github.com/nextapps-de/flexsearch
7 | */
8 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/js/search-9719be99.bundle.min.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /**!
2 | * FlexSearch.js v0.7.31 (Compact)
3 | * Copyright 2018-2022 Nextapps GmbH
4 | * Author: Thomas Wilkerling
5 | * Licence: Apache-2.0
6 | * https://github.com/nextapps-de/flexsearch
7 | */
8 |
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/static/print-735ccc12.min.css:
--------------------------------------------------------------------------------
1 | @media print{.gdoc-nav,.gdoc-footer .container span:not(:first-child),.gdoc-paging,.editpage{display:none}.gdoc-footer{border-top:1px solid #dee2e6}.gdoc-markdown pre{white-space:pre-wrap;overflow-wrap:break-word}.chroma code{border:1px solid #dee2e6;padding:.5rem !important;font-weight:normal !important}.gdoc-markdown code{font-weight:bold}a,a:visited{color:inherit !important;text-decoration:none !important}.gdoc-toc{flex:none}.gdoc-toc nav{position:relative;width:auto}.wrapper{display:block}.wrapper main{display:block}}
--------------------------------------------------------------------------------
/docs/themes/hugo-geekdoc/theme.toml:
--------------------------------------------------------------------------------
1 | name = "Geekdoc"
2 | license = "MIT"
3 | licenselink = "https://github.com/thegeeklab/hugo-geekdoc/blob/main/LICENSE"
4 | description = "Hugo theme made for documentation"
5 | homepage = "https://geekdocs.de/"
6 | demosite = "https://geekdocs.de/"
7 | tags = ["docs", "documentation", "responsive", "simple"]
8 | min_version = "0.112.0"
9 |
10 | [author]
11 | name = "Robert Kaussow"
12 | homepage = "https://thegeeklab.de/"
13 |
--------------------------------------------------------------------------------
/funding.yaml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4 | patreon: # Replace with a single Patreon username
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: # Replace with a single Liberapay username
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13 | custom: https://bit.ly/drpaypal
14 |
15 |
--------------------------------------------------------------------------------