first commit

This commit is contained in:
usbharu 2023-06-30 21:06:24 +09:00
commit a244e59465
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
27 changed files with 2936 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
public
node_modules
.hugo_build.lock

4
.gitmodules vendored Normal file
View File

@ -0,0 +1,4 @@
[submodule "themes/blowfish"]
path = themes/blowfish
url = https://github.com/nunocoracao/blowfish.git
branch = main

15
archetypes/default.md Normal file
View File

@ -0,0 +1,15 @@
---
author: usbharu
draft: true
categories:
- null
date: {{ .Date }}
tags:
- null
keywords:
- null
title: TBD
relpermalink: posts/{{ replaceRE "^.*_" "" .Name }}/
url: posts/{{ replaceRE "^.*_" "" .Name }}/
decription: TBD
---

BIN
assets/img/background.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 KiB

BIN
assets/img/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
assets/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 699 KiB

View File

@ -0,0 +1,65 @@
# -- Site Configuration --
# Refer to the theme docs for more details about each of these parameters.
# https://blowfish.page/docs/getting-started/
theme = "blowfish"
baseURL = "https://blog.usbharu.dev/"
defaultContentLanguage = "ja"
# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles
enableRobotsTXT = true
paginate = 10
summaryLength = 0
buildDrafts = true
buildFuture = true
# googleAnalytics = "G-XXXXXXXXX"
[imaging]
anchor = 'Center'
[taxonomies]
tag = "tags"
category = "categories"
author = "authors"
series = "series"
[sitemap]
changefreq = 'daily'
filename = 'sitemap.xml'
priority = 0.5
[outputs]
home = ["HTML", "RSS", "JSON"]
[related]
threshold = 0
toLower = false
[[related.indices]]
name = "tags"
weight = 100
[[related.indices]]
name = "categories"
weight = 100
[[related.indices]]
name = "series"
weight = 50
[[related.indices]]
name = "authors"
weight = 20
[[related.indices]]
name = "date"
weight = 10
[[related.indices]]
applyFilter = false
name = 'fragmentrefs'
type = 'fragments'
weight = 10

View File

@ -0,0 +1,28 @@
languageCode = "ja-jp"
languageName = "Japanese"
weight = 1
title = "usbharu - blog"
[params]
displayName = "JP"
isoCode = "ja-jp"
rtl = false
dateFormat = "2006-01-02"
logo = "img/logo.png"
# secondaryLogo = "img/secondary-logo.png"
# description = "My awesome website"
# copyright = "Copy, _right?_ :thinking_face:"
[author]
name = "usbharu"
image = "img/icon.png"
headline = "Java~♪"
bio = "Kotlin~♪"
links = [
{ email = "mailto:i@usbharu.dev" },
{ discord = "https://discord.com/users/751253673916629115" },
{ github = "https://github.com/usbharu" },
{ mastodon = "https://misskey.usbharu.dev/@" },
{ steam = "https://steamcommunity.com/profiles/userid" },
{ twitter = "https://twitter.com/usbharu" },
]

View File

@ -0,0 +1,13 @@
# -- Markup --
# These settings are required for the theme to function.
[goldmark]
[goldmark.renderer]
unsafe = true
[highlight]
noClasses = false
[tableOfContents]
startLevel = 2
endLevel = 4

View File

@ -0,0 +1,20 @@
[[main]]
name = "ALL"
pageRef = "/posts"
weight = 10
[[main]]
name = "カテゴリ"
pageRef = "/categories"
weight = 15
[[main]]
name = "タグ"
pageRef = "/tags"
weight = 20
[[main]]
name = "技術"
parent = "カテゴリ"
pageRef = "/categories/技術"
weight = 10

View File

@ -0,0 +1,3 @@
[hugoVersion]
extended = false
min = "0.87.0"

135
config/_default/params.toml Normal file
View File

@ -0,0 +1,135 @@
# -- Theme Options --
# These options control how the theme functions and allow you to
# customise the display of your website.
#
# Refer to the theme docs for more details about each of these parameters.
# https://blowfish.page/docs/configuration/#theme-parameters
colorScheme = "blowfish"
defaultAppearance = "light" # valid options: light or dark
autoSwitchAppearance = true
enableSearch = true
enableCodeCopy = true
# mainSections = ["section1", "section2"]
# robots = ""
disableImageOptimization = true
# defaultBackgroundImage = "IMAGE.jpg" # used as default for background images
# defaultFeaturedImage = "IMAGE.jpg" # used as default for featured images in all articles
# highlightCurrentMenuArea = true
# smartTOC = true
# smartTOCHideUnfocusedChildren = true
[header]
layout = "fixed" # valid options: basic, fixed, fixed-fill, fixed-fill-blur
[footer]
showMenu = true
showCopyright = true
showThemeAttribution = true
showAppearanceSwitcher = true
showScrollToTop = true
[homepage]
layout = "background" # valid options: page, profile, hero, card, background, custom
homepageImage = "img/background.jpg" # used in: hero, and card
showRecent = true
showRecentItems = 5
showMoreLink = true
showMoreLinkDest = "/posts"
cardView = false
cardViewScreenWidth = false
layoutBackgroundBlur = true # only used when layout equals background
[article]
showDate = true
showViews = false
showLikes = false
showDateUpdated = true
showAuthor = true
showHero = true
heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
layoutBackgroundBlur = true # only used when heroStyle equals background or thumbAndBackground
layoutBackgroundHeaderSpace = true # only used when heroStyle equals background
showBreadcrumbs = false
showDraftLabel = true
showEdit = false
# editURL = "https://github.com/username/repo/"
editAppendPath = true
seriesOpened = true
showHeadingAnchors = true
showPagination = true
invertPagination = false
showReadingTime = true
showTableOfContents = true
showRelatedContent = false
relatedContentLimit = 3
showTaxonomies = true
showAuthorsBadges = true
showWordCount = true
showSummary = true
# sharingLinks = ["twitter"]
[list]
showHero = false
# heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
layoutBackgroundBlur = true # only used when heroStyle equals background or thumbAndBackground
layoutBackgroundHeaderSpace = true # only used when heroStyle equals background
showBreadcrumbs = false
showSummary = false
showViews = false
showLikes = false
showTableOfContents = false
showCards = false
groupByYear = true
cardView = false
cardViewScreenWidth = false
constrainItemsWidth = false
[sitemap]
excludedKinds = ["taxonomy", "term"]
[taxonomy]
showTermCount = true
showHero = false
# heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
showBreadcrumbs = false
showViews = false
showLikes = false
showTableOfContents = false
cardView = true
[term]
showHero = false
# heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
showBreadcrumbs = false
showViews = false
showLikes = false
showTableOfContents = true
groupByYear = false
cardView = false
cardViewScreenWidth = false
[firebase]
# apiKey = "XXXXXX"
# authDomain = "XXXXXX"
# projectId = "XXXXXX"
# storageBucket = "XXXXXX"
# messagingSenderId = "XXXXXX"
# appId = "XXXXXX"
# measurementId = "XXXXXX"
[fathomAnalytics]
# site = "ABC12345"
# domain = "llama.yoursite.com"
[buymeacoffee]
# identifier = ""
# globalWidget = true
# globalWidgetMessage = "Hello"
# globalWidgetColor = "#FFDD00"
# globalWidgetPosition = "Right"
[verification]
# google = ""
# bing = ""
# pinterest = ""
# yandex = ""

4
content/_index.md Normal file
View File

@ -0,0 +1,4 @@
---
aliases:
- /blog
---

2465
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"wrangler": "^3.1.1"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
static/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

9
static/browserconfig.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>

BIN
static/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
static/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
static/mstile-150x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,142 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="174.000000pt" height="174.000000pt" viewBox="0 0 174.000000 174.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,174.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M790 1654 c-30 -8 -75 -28 -101 -44 -25 -17 -55 -30 -67 -30 -49 0
-177 -51 -277 -111 -117 -69 -188 -138 -199 -190 -21 -105 9 -165 97 -193 14
-4 17 -12 12 -28 -3 -13 14 15 39 62 64 118 152 202 245 231 127 40 322 36
499 -12 185 -49 280 -127 325 -266 14 -43 29 -94 34 -114 l8 -36 51 16 c77 26
151 84 163 129 18 66 -3 124 -68 187 -43 41 -53 78 -25 89 25 10 160 7 188 -4
22 -8 26 -7 26 9 0 22 -41 31 -140 31 -96 0 -107 -5 -102 -43 l5 -31 -44 36
c-24 20 -74 54 -112 75 -37 22 -64 42 -60 46 3 4 -3 7 -15 7 -19 0 -99 27
-112 37 -3 3 4 11 14 19 19 13 18 16 -24 54 -72 67 -131 90 -224 89 -45 0
-106 -7 -136 -15z"/>
<path d="M1298 1573 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
<path d="M1225 1555 c-39 -17 -21 -18 25 0 19 7 28 14 20 14 -8 0 -28 -6 -45
-14z"/>
<path d="M1420 1510 c0 -5 -28 -15 -62 -23 -35 -9 -52 -15 -38 -16 14 0 50 8
80 18 40 12 50 19 38 24 -10 3 -18 2 -18 -3z"/>
<path d="M1501 1494 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1484 1456 c-3 -8 -4 -29 -2 -48 3 -29 4 -27 8 15 5 48 3 58 -6 33z"/>
<path d="M717 1118 c-49 -99 -88 -223 -86 -273 1 -21 4 -15 10 20 12 75 47
177 90 262 21 42 37 78 35 80 -2 2 -24 -38 -49 -89z"/>
<path d="M891 1034 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M221 969 c-12 -35 -21 -68 -20 -73 0 -6 11 20 25 58 13 38 22 71 20
73 -2 2 -13 -24 -25 -58z"/>
<path d="M927 1010 c12 -14 36 -50 52 -80 17 -30 31 -50 31 -45 0 18 -57 110
-81 130 l-24 20 22 -25z"/>
<path d="M1224 907 c-1 -131 -6 -197 -15 -192 -3 2 -13 -11 -22 -30 -9 -19
-21 -35 -26 -35 -5 0 -12 24 -16 53 -9 75 -32 152 -50 167 -13 11 -15 8 -16
-16 -1 -39 -25 -104 -32 -84 -20 62 -24 89 -13 94 6 2 3 5 -8 5 -13 1 -16 -4
-11 -16 3 -10 11 -40 17 -67 8 -40 12 -46 23 -35 7 8 20 36 28 64 l14 50 12
-36 c6 -20 17 -69 24 -110 14 -85 31 -98 62 -47 l19 33 8 -105 c4 -58 10 -123
12 -145 2 -22 5 -58 5 -80 1 -28 4 -35 10 -25 5 9 3 58 -6 120 -10 79 -12 158
-7 321 3 119 2 219 -2 222 -5 3 -9 -45 -10 -106z"/>
<path d="M908 895 c2 -66 5 -124 7 -130 7 -20 3 191 -4 220 -4 17 -6 -24 -3
-90z"/>
<path d="M676 953 c-3 -21 -5 -56 -5 -78 1 -26 5 -14 10 34 9 79 6 108 -5 44z"/>
<path d="M441 913 c-14 -48 -14 -187 -1 -232 7 -26 6 -46 -5 -77 -25 -74 -29
-163 -11 -242 9 -39 16 -91 16 -116 0 -48 53 -156 77 -156 18 0 43 41 50 83 3
20 10 40 15 43 5 3 6 -5 4 -18 -3 -12 1 -36 9 -53 14 -30 14 -30 10 20 -3 28
-2 45 1 38 3 -7 12 -9 19 -7 19 8 29 -35 21 -90 -6 -36 -14 -49 -46 -71 -22
-15 -40 -29 -40 -31 0 -2 54 -4 120 -4 l120 0 -20 40 c-11 21 -20 56 -21 77 0
26 -3 32 -8 20 -3 -10 -25 -27 -48 -37 l-41 -18 -4 54 c-2 31 1 54 7 55 6 0
-13 10 -41 23 -80 37 -120 78 -143 149 -43 132 -52 185 -41 228 l11 40 23 -34
c13 -18 26 -50 30 -70 10 -53 21 -52 21 2 0 61 24 97 74 112 33 10 44 9 77 -7
37 -19 46 -35 24 -42 -6 -2 -14 5 -17 17 -8 32 -56 28 -83 -6 -31 -40 -12
-103 31 -103 11 0 19 -4 19 -10 0 -5 11 -10 24 -10 34 0 53 36 51 93 -1 39 -6
53 -25 68 -45 34 -137 21 -173 -25 -9 -11 -3 149 7 194 3 14 -1 7 -8 -15 -8
-22 -15 -82 -15 -135 l-1 -95 -20 25 c-43 56 -65 232 -40 319 5 19 8 37 6 39
-3 2 -9 -13 -15 -35z m-1 -448 c0 -11 16 -65 35 -120 38 -106 57 -235 36 -235
-20 0 -61 101 -61 150 -1 25 -7 72 -15 105 -17 70 -20 159 -5 135 5 -8 10 -24
10 -35z m120 -260 c0 -32 -17 -92 -24 -84 -2 2 -6 34 -9 72 -6 65 -6 67 13 57
14 -7 20 -21 20 -45z"/>
<path d="M1092 910 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z"/>
<path d="M558 880 c-10 -13 -18 -29 -18 -35 1 -5 7 1 14 14 13 23 14 18 17
-57 3 -47 9 -86 17 -94 9 -9 12 1 11 53 0 44 -3 58 -9 44 -6 -14 -9 -3 -11 40
l-4 60 -17 -25z m29 -122 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z"/>
<path d="M605 852 c2 -28 9 -60 15 -70 12 -18 11 -13 -10 83 -9 38 -9 38 -5
-13z"/>
<path d="M1412 870 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z"/>
<path d="M191 864 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1342 789 c-1 -36 -11 -101 -22 -143 -11 -43 -22 -108 -24 -144 l-5
-67 13 80 c7 44 21 111 30 149 10 40 15 93 13 130 l-3 61 -2 -66z"/>
<path d="M182 820 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z"/>
<path d="M681 795 c-2 -81 104 -206 162 -191 13 3 29 17 35 31 18 40 14 44 -8
8 -26 -43 -50 -42 -101 4 -46 42 -67 77 -79 136 -7 35 -8 37 -9 12z"/>
<path d="M0 781 c0 -4 20 -28 44 -52 35 -35 46 -54 51 -90 8 -55 -21 -188 -65
-292 -21 -50 -30 -88 -30 -126 l0 -54 48 6 c26 4 59 9 75 13 26 6 27 5 27 -32
0 -46 9 -84 20 -84 4 0 10 19 14 43 8 50 36 140 46 147 10 7 18 80 8 80 -4 0
-8 -8 -8 -17 1 -16 -41 -158 -61 -208 -5 -12 -8 13 -8 65 -1 76 13 168 33 225
5 15 3 14 -11 -5 -30 -42 -85 -100 -94 -100 -4 0 7 32 26 72 19 40 35 78 35
85 0 21 17 15 23 -9 4 -12 9 -20 12 -17 3 3 0 19 -6 36 -5 17 -14 68 -18 114
l-9 84 1 -90 c0 -97 -15 -147 -74 -254 -17 -29 -28 -55 -26 -57 3 -3 30 19 62
48 38 34 56 46 52 33 -3 -11 -9 -41 -13 -67 -5 -42 -10 -48 -38 -57 -42 -13
-106 -24 -106 -18 0 2 15 38 33 78 61 136 98 322 78 395 -13 44 -24 60 -65 92
-29 22 -56 29 -56 13z"/>
<path d="M171 754 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1643 730 c-38 -23 -71 -83 -79 -144 -7 -48 -23 -61 -93 -72 -37 -6
-39 -5 -49 27 -6 19 -12 45 -14 58 -2 19 -6 15 -20 -23 -10 -26 -13 -44 -8
-41 6 3 10 4 10 1 0 -2 3 -12 7 -22 5 -14 2 -16 -15 -12 -16 4 -25 0 -32 -13
-10 -17 -7 -19 25 -19 33 0 36 -3 69 -68 39 -76 129 -169 230 -234 53 -34 61
-37 65 -22 2 10 -1 20 -7 22 -29 9 -110 71 -163 125 -51 51 -119 147 -119 168
0 4 19 12 43 18 23 6 48 15 56 20 9 6 27 -5 60 -40 42 -43 52 -49 89 -49 l42
0 0 170 0 170 -32 0 c-18 0 -47 -9 -65 -20z"/>
<path d="M162 695 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z"/>
<path d="M959 691 c-23 -23 -29 -38 -28 -68 l1 -38 10 42 c14 66 82 104 128
72 13 -9 13 -10 0 -7 -29 4 -58 -13 -67 -40 -11 -32 -1 -78 16 -74 6 1 14 -5
17 -13 9 -22 51 -18 68 7 22 31 21 86 0 84 -9 0 -19 5 -22 13 -3 9 1 11 17 6
30 -9 17 19 -15 34 -46 20 -93 14 -125 -18z"/>
<path d="M891 694 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1411 664 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1198 563 c-3 -126 -3 -253 0 -253 2 0 10 16 17 35 11 26 12 41 4 62
-6 15 -10 74 -10 131 1 56 -1 102 -4 102 -3 0 -6 -35 -7 -77z"/>
<path d="M1321 464 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M331 469 c-1 -4 5 -24 13 -45 7 -22 11 -45 9 -51 -3 -7 1 -13 7 -13
8 0 10 9 6 26 -8 31 -34 92 -35 83z"/>
<path d="M302 345 c0 -66 -5 -136 -11 -155 -6 -19 -11 -44 -10 -55 0 -11 8 12
18 50 16 58 17 88 11 175 l-8 105 0 -120z"/>
<path d="M1271 443 c0 -12 -4 -30 -7 -40 -5 -17 -5 -17 6 0 6 10 9 28 7 40 -4
22 -4 22 -6 0z"/>
<path d="M1301 394 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1172 387 c-8 -9 -12 -34 -10 -64 l3 -48 13 43 c7 24 12 53 10 64 -3
19 -4 20 -16 5z m5 -39 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z"/>
<path d="M1281 390 c0 -8 4 -22 9 -30 12 -18 12 -2 0 25 -6 13 -9 15 -9 5z"/>
<path d="M1307 351 c-4 -15 2 -30 19 -49 15 -17 22 -20 18 -9 -3 9 -10 17 -16
17 -5 0 -7 4 -4 9 4 5 2 19 -2 32 l-9 23 -6 -23z"/>
<path d="M341 334 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M371 334 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1110 313 c-14 -15 -18 -22 -9 -15 13 10 18 6 33 -24 22 -48 28 -40
13 19 l-12 48 -25 -28z"/>
<path d="M327 263 c-3 -27 -1 -52 4 -57 5 -6 9 12 9 47 0 31 -2 57 -4 57 -2 0
-6 -21 -9 -47z"/>
<path d="M381 294 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1044 258 l-19 -23 23 19 c12 11 22 21 22 23 0 8 -8 2 -26 -19z"/>
<path d="M392 235 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z"/>
<path d="M895 250 c-13 -6 -15 -9 -5 -9 8 0 22 4 30 9 18 12 2 12 -25 0z"/>
<path d="M245 193 c3 -43 33 -129 35 -100 0 5 -4 17 -10 27 -5 10 -14 43 -20
72 l-9 53 4 -52z"/>
<path d="M980 209 c-35 -31 -35 -31 -3 -9 18 11 35 25 38 30 10 16 2 11 -35
-21z"/>
<path d="M1070 225 c0 -4 5 -16 11 -27 8 -16 8 -41 -1 -96 -7 -42 -14 -82 -17
-89 -4 -10 33 -13 190 -13 171 0 196 2 201 16 4 9 1 23 -5 30 -6 7 -8 18 -5
23 4 5 2 12 -4 16 -5 3 -10 15 -10 25 0 10 -6 21 -12 23 -10 4 -10 8 0 15 11
7 11 10 -2 15 -9 4 -16 14 -16 23 0 12 -7 15 -30 12 -16 -2 -31 0 -33 6 -2 7
-47 11 -123 11 -65 0 -125 4 -131 8 -7 5 -13 5 -13 2z"/>
<path d="M400 125 c0 -32 3 -55 7 -51 7 7 5 98 -3 105 -2 2 -4 -22 -4 -54z"/>
<path d="M758 163 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z"/>
<path d="M1442 145 c9 -9 168 -85 168 -80 0 3 -36 23 -80 45 -74 37 -101 48
-88 35z"/>
<path d="M631 124 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1441 104 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M1620 56 c0 -3 9 -10 20 -16 11 -6 20 -8 20 -6 0 3 -9 10 -20 16 -11
6 -20 8 -20 6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

14
static/site.webmanifest Normal file
View File

@ -0,0 +1,14 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-144x144.png",
"sizes": "144x144",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

1
themes/blowfish Submodule

@ -0,0 +1 @@
Subproject commit 02c96872ba04032088fe06bae931cee35bb51c41