' + item.title + '
' + resultList += '' + item.content.substring(0, 150) + '...
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..abef55b --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +content/**/*.md linguist-detectable diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..55b5b71 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,16 @@ +changelog: + categories: + - title: New Features ð + labels: + - "enhancement" + - title: Bug Fix ðŠ + labels: + - "bug" + # - title: Dependencies ð€ + # labels: + # - "dependencies" + # authors: + # - dependabot + - title: Others ð + labels: + - "*" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..7626acd --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,50 @@ +name: Deploy to Github Pages + +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + permissions: + # Give the default GITHUB_TOKEN write permission to commit and push the + # added or changed files to the repository. + contents: write + + steps: + - uses: actions/checkout@v4 + + - name: Cache Hugo resources + uses: actions/cache@v4 + env: + cache-name: cache-hugo-resources + with: + path: resources + key: ${{ env.cache-name }} + + - uses: actions/setup-go@v4 + with: + go-version: "^1.17.0" + - run: go version + + - name: Setup Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: "latest" + extended: true + + - name: Build + run: hugo --minify --gc + + - name: Deploy ð + uses: JamesIves/github-pages-deploy-action@v4 + with: + branch: gh-pages + folder: public + clean: true + single-commit: true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86c95ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Generated files by hugo +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json + +# Executable may be added to repository +hugo.exe +hugo.darwin +hugo.linux + +# Temporary lock file while building +/.hugo_build.lock diff --git a/.vscode/md.code-snippets b/.vscode/md.code-snippets new file mode 100644 index 0000000..8c786b3 --- /dev/null +++ b/.vscode/md.code-snippets @@ -0,0 +1,61 @@ +{ + // Place your lemon73-computing.github.io workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and + // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope + // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is + // used to trigger the snippet and the body will be expanded and inserted. Possible variables are: + // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. + // Placeholders with the same ids are connected. + // Example: + // "Print to console": { + // "scope": "javascript,typescript", + // "prefix": "log", + // "body": [ + // "console.log('$1');", + // "$2" + // ], + // "description": "Log output to console" + // } + + "Front Matter (Default)": { + "scope": "markdown", + "prefix": ["default"], + "body": [ + "---", + "title: ${1:Title}", + "description: ${2:Description}", + "slug: \"$CURRENT_MONTH$CURRENT_DATE\"", + "date: $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND+0900", + "categories:", + " - ${4:category}", + "tags:", + " - ${5:tag}", + "draft: ${6:true}", + "---\n", + "${7:}\n", + "## Distribution\n", + "- [Lemonium (here)](./) (EN: $CURRENT_YEAR/$CURRENT_MONTH/$CURRENT_DATE)\n", + ], + "description": "Insert default front matter" + }, + "Front Matter (Default.ja)": { + "scope": "markdown", + "prefix": "default-ja", + "body": [ + "---", + "title: ${1:ã¿ã€ãã«}", + "description: ${2:説æ}", + "slug: \"$CURRENT_MONTH$CURRENT_DATE\"", + "date: $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND+0900", + "categories:", + " - ${4:ã«ããŽãªãŒ}", + "tags:", + " - ${5:ã¿ã°}", + "draft: ${6:true}", + "---\n", + "${7:}\n", + "## é åž\n", + "- [Lemonium (ãã)](./) (JP: $CURRENT_YEAR/$CURRENT_MONTH/$CURRENT_DATE)\n", + ], + "description": "æšæºã®ããã³ããã¿ãŒãæ¿å ¥" + } +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..fe319c8 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,28 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Serve Drafts", + "type": "shell", + "command": "hugo server -D", + "group": { + "kind": "test", + "isDefault": true + }, + "isBackground": true, + "problemMatcher": [] + }, + { + "label": "Build", + "type": "shell", + "command": "hugo", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + } + ] +} diff --git a/404.html b/404.html deleted file mode 100644 index c441f56..0000000 --- a/404.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - -
- - - - -ã¢ã¯ã»ã¹åŽã§åé¡ãçºçããŠããŸãã
-ãªã³ã¯ãééã£ãŠããããªã³ã¯å ãåé€ãããŸããã
- -ãªã³ã¯ãééã£ãŠããªããã確èªãã ããã
- - diff --git a/README.md b/README.md index 38a8846..235b5c7 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,55 @@ -# Lemon's Resting Area - Website -This is source code of [LRA website][lra-main]. / [ã¬ã¢ã³ã®äŒæ¯æ ãŠã§ããµã€ã][lra-main]ã®ãœãŒã¹ã³ãŒãã§ãã +# Lemonium website -[lra-main]: https://lemon73-computing.github.io "Lemon's Resting Area - Website" +Promoting [website] for foundation Lemon's Resting Area. Build with the Hugo static site generator. -## Licenses / ã©ã€ã»ã³ã¹ -- Text / æç« - - [CC BY-SA 4.0] -- Images / ç»å - - Not covered by the licence (Disabled) / ã©ã€ã»ã³ã¹å¯Ÿè±¡å€ (å©çšçŠæ¢) +[website]: https://lemon73-computing.github.io "Lemon's Resting Area - Website" + +## How to use + +### Building and testing the site locally + +Here are the steps to build site on Ubuntu-based system (tested on KDE neon 24.04): + +```shell +# intall golang +sudo apt install golang + +# install latest version of Hugo (the example uses v0.128.0) +wget https://github.com/gohugoio/hugo/releases/download/v0.128.0/hugo_extended_0.128.0_linux-amd64.deb +sudo dpkg -i hugo_extended_0.128.0_linux-amd64.deb + +# build the site +hugo server + +# http://localhost:1313 +``` + +### Create new article + +To create an article using [the default archetype](./archetypes/default.md): +```shell +# Japanese +hugo new content posts/2024/something.md + +# English +hugo new content/en/posts/2024/something.md +``` + +To create an article using [the release note arthetype](./archetypes/releasenote.md): +```shell +# Japanese +hugo new content -k releasenote posts/2024/something.md + +# English +hugo new -k releasenote content/en/posts/2024/something.md +``` + +More information: https://gohugo.io/content-management/archetypes + +(About multilingual archetypes: https://discourse.gohugo.io/t/multilingual-archetypes/39542/8) + +## License + +Licensed under the [CC BY-SA 4.0]. [CC BY-SA 4.0]: https://creativecommons.org/licenses/by-sa/4.0/deed.ja "Creative Commons License BY-SA 4.0" diff --git a/apps/alice.html b/apps/alice.html deleted file mode 100644 index d9d5615..0000000 --- a/apps/alice.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - -Alice Project ãšã¯ããã«ã²ãŒã åãã²ãŒã ãšã³ãžã³åã³åšèŸºç°å¢ã®éçºèšç»ã§ãã
-Alice Novel ãŠã§ããµã€ã
- -Himeno Next ãšã¯ãçç ã§éçºãããå§«éãã³ãããŒã¯ã GUI ãã¯ãã¹ãã©ãããã©ãŒã 察å¿ãããããå©çšãããããœãããŠã§ã¢ãšããŠå®è£ ããããšãç®çãšããèšç»ã§ãã
-éçºã®é·æåã Android çéçºã®é£èªã«ãããéçºã¯äžæããŸããã
-GUI åèªäœã¯æåããŠããã Windows ã§ã®ã¿å©çšå¯èœã§ãã
- -è¹è²èšç»ãšã¯ãæ§ã ãªãã¬ãŒã ã¯ãŒã¯ã§ã©ã³ãã ãªè²ãåºåãããœãããŠã§ã¢ã®éçºããããšããèšç»ã§ãã
-(Formçã§ã¯)æãã/æãè²ã«çµã£ãŠåºåããæ©èœããèµ€ãç·ãéã®ãããããéžãã§è²ãåºåããæ©èœãªã©ã®ä»ã®ãœããã§ã¯å®è£ ãããããšã®å°ãªãæ©èœãæèŒããŠããŸãã
-ãŸããåè²ã®ã¿ã§åºåããæ©èœããããŸãã
-(Consoleçã§ã¯ç¹ã«)軜éãšãªã£ãŠãããããå€ãããœã³ã³ã§ãåäœããããã§ãã
-çŸæç¹ã§ã¯Webãã¹ãçãå ¬éããŠããŸãã
-å代ã®ãã¹ã¯ãããçã¯å ¬éããŠããŸããããå°æ¥çã«ã¯å ¬éããå¯èœæ§ããããŸãã
- -éçºè
ã® [nunocoracao](https://github.com/nunocoracao) æ°ã Blowfish ã®ãŠã§ããµã€ãã®ç¿»èš³ãåŒã³ãããéã«ãåæã®ç¿»èš³ã¡ã³ããŒãšããŠåå ããŸããã([#1322](https://github.com/nunocoracao/blowfish/discussions/1322))
+
+- Added: Japanese translation (`authors/**` and `samples/**`) ([#1361](https://github.com/nunocoracao/blowfish/pull/1361))
+- Update Japanese translation ([#1383](https://github.com/nunocoracao/blowfish/pull/1383))
+- Japanese translation ([#1339](https://github.com/nunocoracao/blowfish/pull/1339))
+
+### .NET MAUI (For Linux)
+
+ãªããžããª: 2022幎ç§ãã2023幎ååã«åããŠã®èšç»ããŸãšããæžé¡ã ç§å¯èšç»ã«é¢ããŠã¯æ€é²ãè¡ã£ãŠããã Lemon73(LEC) '22-11æ_äºå®ãªã '22-12æ24æ¥_LF2204 - å¬ - (ä»å¹ŽæåŸãšãªãå¬å£å€§ç¥) ã»ã¡ã€ã³ã³ã³ãã³ã(â â â â â 颚ã®â â â â â â â â â â â ) ã»A-RPG S2/â â â â â â â ã»A-RPG S2(βç)å
¬é ã»â â â â â â â â (æ©æãªãªãŒã¹ç)å
¬é '22-12æ27æ¥(é )_'22Lemonã®â â ã»â â â â â â â â æ¹è¯(ããŒãžã§ã³ã¢ãã?) '23-1æ_â â â â â â ãµãŒãã¹éå§? ã»â â (â â â frameworks/â â â â â â â â )ã®è©Šçš ã»âãâ â â â â â 圢åŒã®â â ã«ããŠå
¬éãã(â â â â çéâ ã®â â é²åº) '23-1æ_â â (=â â =â â â â â )èšç»(â â â â â â â â â â â â )(â â â â â â â â â â â â â â ãœãããäœã)? ã»OSSå
¬é x ã»â â â frameworks(â â â â â â â â )/â â â â ã®ã©ã¡ãããŸãã¯äž¡æ¹ã§å
¬éãè¡ã (å
¬éæç¹ã§ã¯Winçãæ£åŒå¯Ÿå¿ãMac/Linuxã¯ãœããå
¬éèªäœè¡ããåäœç¢ºèªã¯ããªã (ãªããWebGLçãBuildã§ãããšæããããµãŒããŒããªãã®ã§å
¬éã¯ãªã) (Linuxã¯å®æ©ã§åäœç¢ºèªã§ããç°å¢ãæŽå次第æ£åŒå¯Ÿå¿ã«æ Œäžãã ãã¶ãDebianããŒã¹ã®ã¿ã§RHELããŒã¹ãªã©ã®å¯Ÿå¿ã¯ãªã)) ã»ä»çµã¿ãšããŠã¯ãâ â ãéžæã(éžæããªããŠããã)ããã®â â ã«åã£ãâ ã衚瀺+â â â â â ãåºåãã (â â â /â â â ããéžæããåæã«5â åºåãã¢ããããŒãã§è¿œå ) â â â â â ã«ã䌌ããããªWebã·ã¹ãã ãããã®ã§ãããã«å¯Ÿæãã圢ã LECãšããŠã¯â ãšãªãâ â â â â â â (ã¶ã£ã¡ãããã®åéã¯â â ãªããLECç¥å床ãªãã (â â â â â ã®ãµãŒãã¹ã«ã¯ãã)â â â â â çšã®â â â ã·ã¹ãã (âãªããŠããã°ããã®ãããããªããã©ããã£ãŠããw)ããªã ã®3ã€ã®ããªããã§å³ãããšæããããšãç¬èªæ§ããªãâèŽåœçãããww) '23-1æ_â â â â â â â â ã»æ°æ©èœè¿œå (kwskã¯åŸã»ã©æ±ºå®) (A-RPG S2ã¯ãã£ããéçºåæ¢) Discord (2022/11/3) ãã (2023/2/20) LECã®æŽ»åäŒæ¢ã«ã€ããŠã®å
¬éçšLECå
¬åŒæç« çã§ãã LECæ¬éš LECæ¬éšã®éå¶ãè¡ã£ãŠããLemon73ãLECã®æŽ»åãšãçŸå®æŽ»åã®äž¡ç«ãç¶ããããšã¯äžå¯èœãšãããç¶æ³ãšãªããŸããã ãããŸã§çŸå®ã®æŽ»åãå³ãããªã£ãã®ã¯äºã€ã®çç±ãååšããŸãã LECèšç«ææããäºæ³ããŠããããšã§ããã2023幎ã2024幎ã¯ããªãçŸå®æŽ»åãæ¿åãã LECã®æŽ»åãååã«é²ããããªãã ãããšå
ããæ³åããŠããŸããã ãããããããäºæ³ãäžåããäºå®(2023幎ç§ãã~)ãããçŽ1å¹Žãæ©ãäŒæ¢ãšãªã£ãŠããŸããŸããã LECã¯èšç«ææããå€ãã®äºæ¥ãæ±ããŠããŸããã æè¿ã¯ãããããã«æ¡å€§ãããã®ãã¹ãŠãååã«éå¶ããã«ã¯æéãäžè¶³ããããã«ãªã£ãŠããŸããŸããã 以äžã®éãã«é²ããŠããäºå®ã§ãã ãäŒæ¢ãKISS å°Ÿè±ãšæ¡ (ã·ããªãª/ã°ã©ãã£ãã¯ã®ã¿æ®ç) ããµããŒãéå§ãKISS A-RPG S2 ããµããŒãéå§ãKISS â â â â â â â â ãäŒæ¢ãKISS é岡é«å°èšç» ãç¶ç¶äºå®ãLECæ¬éš â â â â â â â â â â ãæªå®ãLECæ¬éš ãµã€ãèšç» ãç¶ç¶äºå®ãLECæ¬éš LFxxxx ãäŒæ¢ãLECæ¬éš LCL(ã©ã€ã»ã³ã¹) ãäŒæ¢ã鳿¥œ Discord (2022/12/16) ãã (2023/2/20) Happy New Year!! ãã®è³æã§ã¯ãçŸæç¹ã§æ±ºå®ããŠããä»åŸã®æ¹éã«ã€ããŠèšèŒããŠããŸãã å
šäœçã«ã¯çž®å°ã«åããæŽ»åã§ãæ°èŠã®èšç»ãé²ããäºå®ã¯ãããŸããã Sky Colors(Blazor v2.9.2): éçºåæ¢ (or åœéåãŸã§å®è£
) Sky Colors(ãã®ä»): æŸçœ® SGaCB(A-RPG S2): æŸçœ® SGaCB(A-RPG P2D): æŸçœ® SGaCB(Akizuki Forest): æŸçœ® SGaCB(å
šäœ): ã·ããªãªã®ã¿èæ¡ãã²ãŒã ãšããŠãå°èª¬ãšããŠã®å
¬éã¯è¡ããªãã Alice Project(Alice Novel): éçºç¶ç¶
- (v0.9.0ãŸã§ãã§ããã°ã·ããªãªåå²ãå«ããv1.0.0ã®å®è£
ãŸã§ã奜ãŸããã
- ãã©ã°ã€ã³å®è£
(Alice Soas)ãè¡ãäºå®ã¯ãªãã)
- Himeno Next: æŸçœ® 3Déœåžèšç»: æŸçœ® ã¹ã«ã³ã¬(Scarlet collections!!): èšç»èæ¡äž (æ±æ¹çŽ
éé·é¢šã®3DçŽ æãå®¶å
·ãšãéšå±ãšãMMDãªã©ã§äœ¿ãããããªãã®ã) è²åœ©åŠç ç©¶: èšç»èæ¡äž äºå®ãªã KDE(æ¥æ¬KDE): ç¿»èš³æ¯æŽãªã©ãäžå®æã«è¡ããã? KDE(KDE Itary): ãµã€ãã®firefoxçã«ããããã°ãä¿®æ£äºå® KDE(Krita): ç¿»èš³æ¯æŽ or åºå ±(äœ¿ãæ¹ã®èšäºãåç»ãäœããšã)ããããã? ä»å¹Žã坿ãåšãæããããã æçš¿ã¯ãããŠãRedditã§è¡ã£ãŠããŸãã ãã (2024/1/1) LRA ãŸãã¯ æ§ LEC ã§éå»ã«äœæããè³æã®ã¢ãŒã«ã€ããèŒããŠããŸãã åœã°ã«ãŒãã§ã¯æ
å ±é瀺å¶åºŠãæšå¥šããŠããŸãã ãã®äžç°ãšããŠãç¬èªå¶åºŠãäŒè©±ã®é瀺ããæšå¥šããŠããŸãã è³æã®å©çšèš±å¯ãªã©ããšãéã¯ãäžè¬çã«ã¯DMãªã©ã®éå
¬éã®ãããšãã§è¡ãããããšãå€ãã§ãã åœã°ã«ãŒãã§ã¯ãã®æ§ãªéå
¬éã®ååŒãããå
¬éããååŒãæšå¥šããŠããŸãã éå
¬éã®èš±è«Ÿã®å Žåã¯ã転èŒãªã©ãããéã«ãã®ç»åã蚱諟ã®äžè»¢èŒãããŠããã®ããããã§ãªãã®ããããããŸããã ãã®æ§ãªåé¡ãæ
å ±å
¬éã«ãã£ãŠè§£æ±ºãå³ããšããæå³ããããŸãã å
¬éã§èš±è«Ÿããšã£ãŠããå Žåã¯ãåäŸãããšã«äº€æžãè¡ãããšã§ã亀æžã®ç°¡æåãè¡ãããšãå¯èœã§ãã ãã (2024/1/23) åœã°ã«ãŒãã§ã¯OSSãæšå¥šããŠããŸãã OSSã¯èª°ã§ãèªç±ã«å©çšããããšãå¯èœã§ãã ãŸããå€ãã®OSã«å¯Ÿå¿ããŠããããšãå€ãã§ãã éçºã補äœãç ç©¶ã®éã«ææãœãããŠã§ã¢ã®éå£ã§è«Šããããšããªãããã«ãåœã°ã«ãŒãã§ã¯ç¡æãœãããŠã§ã¢(ç¹ã«OSS)ã®ã¿ã§éçºãã§ããç°å¢ãç®æããŠããŸãã ãã (2024/1/23) Lemon's Resting Area ã®ã«ãŒã«ãæšå¥šäºé
ã«ã€ããŠèšãè³æã§ãã 2024幎ãããããšãããããŸããã2025幎ããããããé¡ãããŸã!! Ivy Cafeteria 㯠Lemon's Resting Area çŽäžã®å°éçµç¹ã§ãã å°Ÿè±ãšæ¡ãšããç¬èªã®äžçç·ãå
ã«ããã·ããªãªãã³ã³ãã³ãã®äœæãå
¬éãè¡ã£ãŠããŸãã {{ i18n "404-description" }}
+
+ {{ i18n "404-return-home-page" }}
+
+ {{ i18n "index-description" }} {{ .Date.Format "2006.01.02" }} {{ .Title }} {{ .Summary }}⊠{{ .published | time.Format "2006.01.02" }} (Qiita) {{ .title }} {{ index .content "#text" | plainify }} {{ .pubDate | time.Format "2006.01.02" }} (Alice Project) {{ .title }} {{ index .description | plainify }}
+ {{ i18n "index-about-1" }}
+ © Copyright licensed under the CC BY-SA 4.0.
+ {{ if .GitInfo }}
+ Revision {{ .GitInfo.AbbreviatedHash }}.
+ {{ end }}
+ {{ i18n "lang_select_title" }}: LF (Lemon Festival) ãšã¯ã Lemon's Resting Area ãäžå®æã§éå¬ããŠããã€ãã³ãã§ãã ãªã¢ã«ã€ãã³ããªã©ã«ã¯åã°ãªãçšåºŠã®å°ããç¥ãã§ããã LRA ã代衚ããã€ãã³ããšãªã£ãŠããŸãã åå£ã«å¿ããåç»ã®äœæããã²ãŒã ããœãããŠã§ã¢ã®çºè¡šãè¡ã£ãŠããŸãã YouTube ã«æçš¿ãè¡ã£ãŠããŸãã
- (åçãªã¹ã) (ç»åãªã) (ç»åãªã) (ç»åãªã) (ç»åãªã) ã¬ã¢ã³ç ç©¶æ (LFA: Lemon Future Academy) 㯠Lemon's Resting Area ã®ç ç©¶å°éããŒã ã§ãã æè²é¢é£ã®æŽ»åãäž»ã«æ
åœããŠããŸãã COI 㯠Lemon Electric Computer äžä»£ã«ååšãããã©ã³ãã§ãã åœå㯠KISS ãšå¯Ÿæãããã©ã³ããšããŠã®èšç«ãè¡ããã"å°Ÿè±ãšæ¡"äžçã«äŸåããªãç©èªäœããææ¡ãããŸããã çŸåšã¯ç¬ç«ããæèšç»ã«å®è³ªçãªåŒãç¶ããè¡ãããŠããŸãã æ§ KISS ã§ã¯è²ã«é¢ããŠã®ç¬èªèŠæ Œã®å¶å®ãããŠããŸããã SKY #B3FFFA Blue #5152FF B+G #51FFE0 Green #51FFA0 Kool #85F1FF Dark #AC6AFF Core #8A6AFF Pink #FF6AEC Red #FF6AAD Kill #FF6A7F H2O #96FFFF Drug #96FFBD Fine #FFC896 Sky #A696FF LEC #F0FF96 KISS 㯠Lemon Electric Computer äžä»£ã«ååšãããã©ã³ãã§ãã "å°Ÿè±ãšæ¡"äžçç·ãå
ã«ããç©èªã®äœæãè¡ãããŸããã çŸåšã¯ãã®æè¡ã®å
šãŠãåŸç¶ã§ãã Ivy Cafeteria ã«åŒãç¶ãããæŽ»åã¯ç¶ç¶ããŠããŸãã NEO 㯠Lemon Electric Computer äžä»£ã«ååšãããã©ã³ãã§ãã ãã€ãŠã¯æè¡é¢é£ã®ä»äºãæ
åœããŠãããçŸåšã¯ãã®åœ¹å²ãå®è³ªçã« Alice Project ã«åŒãç¶ãã§ããŸãã LECã§ã¯çŸæç¹ã§ã¯å
¬éããŠããŸããããç¬èªã®ã©ã€ã»ã³ã¹ãç ç©¶ããŠããŸãã èŠæ Œãæ£åŒã«å®ãŸã次第ããã¡ãã®ãµã€ããLECã§åãæ±ã£ãŠããåçš®ãœãããªã©ã«æ¯ãåããäºå®ã§ãã ãœãããŠã§ã¢ã«é¢ããŠã®åºæ¬æ¡é
ãæ±ºããèŠæ Œã§ãã çŸæç¹ã§ã¯å
¬éããŠããŸããããä»åŸã¯æ£åŒã«æ¡çšãåæã«å
å®¹ã®æŽç·Žãé²ããæ¹åãžèª¿æŽãè¡ã£ãŠããŸãã LECã§ã¯è²ã«é¢ããŠã®æšæºèŠæ Œã®å¶å®ãé²ããŠããŸãã ä»ã®äŒç»ãšæ¯ã¹ãŠããŸãç©æ¥µçãªéçºã¯ãããŠããŸããããçŸåšå
¬éäžã§ãã éå¶: Discord ãµãŒããŒ: LECã¡ã€ã³ (æ§) ãµãŒããŒ: ãçµµæã Discord ã¯ã Lemon73 ã® SNS ã®äžã§ãåæã«èšç«ããããã以æ¥é·ãééçšãç¶ããŠããŸãã éåžžã®é£çµ¡ãã©ãã§ããã話ã®å ±åãããŠããŸãã èšç«åœåã¯ããªãé »ç¹ã«å©çšãããŠããŸããããçŸåšã¯ããŸãå©çšãããŠããŸããã Lemon's Resting Area ã§æãããã€ã©ã¹ãã¯ããã«éçŽãããŸãã çŸæç¹ã§ã¯æå€§ã®ã€ã©ã¹ãä¿ç®¡å Žæã§ããã Tumblr ãåµèšããããã¡ãã«ãã®æ©èœãè²ãå¯èœæ§ããããŸãã (çŸåšã¯ Reddit åŽã«ç»åãæçš¿ããŠãããããããŸãå©çšãããŠããŸããã) Lemon's Resting Area ã§æãããã€ã©ã¹ãã®é²èЧã§ãªãããŠãŒã¶ãŒã®çæ§ããã¡ã³ã€ã©ã¹ããæçš¿ããããšãã§ããŸãã Mastodon ãµãŒããŒ: Fedibird .jpãšåãããæçš¿èªäœã¯ããŸãé »ç¹ã«ã¯è¡ã£ãŠããŸããã Misskeyå¢ã«å¯ŸããŠçµµæåè¿çãå¯èœãªã®ã§ãMastodonãšMisskeyã®äžéã®åœ¹å²ãæãããŠããŸãã Host 管ççµç¹ 説æ
- Mstdn.jp ã¯ã Lemon's Resting Area ã® SNS ã®äžã§ãé·ãééå¶ãç¶ããŠããŸãã ---- ---- ---- ---- ---- å©çšéå§ 2022/9/4 Host 管ççµç¹ 説æ
- ããã°ã©ã é¢é£ã®æ
å ±å
±æã®ããã«å©çšããŠããŸãã ---- ---- ---- ---- ---- å©çšéå§ 2022/8/2 Host 管ççµç¹ 説æ
- Lemon's Resting Area ã® SNS ã®äžã§ãæåæã«èšç«ããããã以æ¥é·ãééçšãç¶ããŠããŸãã ---- ---- ---- ---- ---- å©çšéå§ 2022/6/22 Host 管ççµç¹ 説æ
- æ§ Lemon Electric Computer èšç«ä»¥åã«èšçœ®ããã SNS ã§ããã以æ¥é·ãééå¶ãç¶ããŠããŸãã ---- ---- ---- ---- ---- å©çšéå§ 2022/3/22 A powerful, lightweight theme for Hugo. éçºè
ã® nunocoracao æ°ã Blowfish ã®ãŠã§ããµã€ãã®ç¿»èš³ãåŒã³ãããéã«ãåæã®ç¿»èš³ã¡ã³ããŒãšããŠåå ããããšãè²¢ç®ã®å§ãŸãã§ãã(#1322) ä»ãŸã§ã«è¡ã£ãè²¢ç®ã¯ãŠã§ããµã€ãã®æ¥æ¬èªèš³ã®ã¿ã§ãã Together, let's embark on an exciting Electron.NET adventure - stay with us! Electron.NET ãžã®è²¢ç®ã¯éçºãéããŠè¡ããŸããã Lemon73 / S. Hagoromo ããã«ã¡ã¯ã Lemon's Resting Area ã® Lemon73 ãšç³ããŸãã ã³ãŒãã£ã³ã°ããã¶ã€ã³ãåç»ç·šéãªã©å¹
åºã掻åãè¡ã£ãŠããŸãã KDE ã¯ããã¹ã¯ãããç°å¢ãäžå¿ã«ãæ§ã
ãªãã¹ã¯ãããã¢ããªã±ãŒã·ã§ã³ãšããããã«å¿
èŠãªã³ã³ããŒãã³ãã®éçºãè¡ããåœéçãªãªãŒãã³ãœãŒã¹ãããžã§ã¯ãã§ãã KDE ã§ã®è²¢ç®ã¯ã æ§ Lemon Electic Computer äžä»£ãã NEO ã§è¡ã£ãŠããŸããã è¶å±èšç»åŸã® Lemon's Resting Area ã§ãç¶ç¶ã㊠KDE ã®æ§ã
ãªæŽ»åã«åå ããŠããŸãã ç§ãè¡ã£ãŠããæŽ»åã¯ä»¥äžã®éãã§ãã 翻蚳掻åã¯2022幎11æããéå§ãããã®åŸãäžå®æã«æŽ»åããŠããŸãã çŸåšãŸã§ã«ç¿»èš³ãè¡ã£ãäž»ãªãããžã§ã¯ãã¯ä»¥äžã§ãã ãŠã§ããµã€ãã®åŸ®èª¿æŽãéçºè³æã®ä¿®æ£ãªã©ã®åŸ®çްãªç¹ã§è²¢ç®ããŸããã KDE ã§äž»ã«å©çšãããŠããèšèªã¯ C++ ã Python ã§ãç§ãåŸæãšããŠãã C# ã¯ã»ãšãã©å©çšãããŠããªãããããœãããŠã§ã¢é¢é£ã®éçºè²¢ç®ã¯ããŸãã§ããŠããŸããã KDE ã§ã¯æ¥æ¬èªè³æãäžè¶³ããŠãããããèšäºãæžããŠããŸãã KDE ã«é¢ããæ
å ±ããŸãšããè³æã Zenn ã«ãŠå
¬éããäºå®ããããŸããããçŸåšã¯èšç»ãåçµããŠããŸãã æ¥æ¬ KDE ãŠãŒã¶ãŒäŒã®äžå¡ãšããŠãæ¥æ¬åœå
ã§ KDE ãæ®åãããããšãç®çãšããæŽ»åã«ãåå ããããšèããŠããŸãã ã€ãã³ãéå¬ã®äž»å¬ãè¡ããããšæã£ãŠããŸãããç®åŠã¯ç«ã£ãŠããŸããã æå³çã«ãããã°ãè¡ã£ãŠããããã§ã¯ãªãã§ããããã°ãèµ·ãã£ãéã¯å ±åããããšããããŸãã 以äžã®çµç¹ããããžã§ã¯ãã«ãäžéšæºãã£ãŠããŸãã ç¿»èš³ã®æŽæ°ãè¡ããŸããã (çŸåšã¯ãããžã§ã¯ããåé€ãããŸãã) 翻蚳ã®åäžãè¡ããŸããã Kdenlive ã® URL ã®ä¿®æ£ãè¡ããŸããã 誀åã®èšæ£ãè¡ããŸããã 誀åã®èšæ£ãè¡ããŸãããLemon's Resting Area
-
- 2022幎 ç§èšç»
- åå
- èšç»
-
-
-
-
-
-
- å
Ž
- Lemon's Resting Area
- 2022幎 å¬äŒæ¢
- çºè¡
- æŠèŠ
-
- ãææã
-
- ãLEC掻åã®æ¡å€§ã
-
-
- ä»åŸã®æ¹é
- å
Ž
- Lemon's Resting Area
-
- 2024幎 æ°å¹Ž
- å
šäœçãªä»åŸã®æ¹é
- è²åœ©åŠ
- ç©èªç³» / ã²ãŒã
- ãã³ãããŒã¯
- 3D
- ç ç©¶ç³»
- è³æå
Ž
- å¯Ÿå€æ¯æŽ
- ã€ã©ã¹ã
- å
Ž
- Lemon's Resting Area
-
- LRA Docs
- éçºæ¹é
-
-
-
- ãã®ä»
-
-
-
-
diff --git a/docs/rule/001-open-chat.html b/docs/rule/001-open-chat.html
deleted file mode 100644
index 15ff951..0000000
--- a/docs/rule/001-open-chat.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- 檞æ³ç - 第1æ¡ | äŒè©±ã®é瀺
- äŒè©±ã®é瀺
- 蚱諟ã®å
¬åŒèšŒæ
- ååŒã®ç°¡æå
- å
Ž
- Lemon's Resting Area
-
- 檞æ³ç - 第2æ¡ | OSSã®æšå¥š
- OSSã®æšå¥š
- å
Ž
- Lemon's Resting Area
-
- 檞æ³ç
- èŠå/æšå¥šäºé
-
-
-
diff --git a/i18n/en.yaml b/i18n/en.yaml
new file mode 100644
index 0000000..6f2bb73
--- /dev/null
+++ b/i18n/en.yaml
@@ -0,0 +1,27 @@
+global:
+ language: "EN"
+
+wip:
+ other: "Working in Progress"
+
+index-description:
+ other: "This is the official website of Lemon's Resting Area and Lemon73."
+index-about-1:
+ other: "Lemon's Resting Area is the foundation to be active of creation."
+index-about-2:
+ other: "The activity was started in March 22, 2022, and I have been activing in many works such as development and drawing illustrations."
+
+404-description:
+ other: "The page you requested cannot be found."
+404-return-home-page:
+ other: "Return to the home page"
+
+search-search-site:
+ other: "Search site"
+search-type-here:
+ other: "Type here to search"
+# search-no-results:
+# other: "No results found."
+
+lang_select_title:
+ other: "Other languages"
diff --git a/i18n/ja.yaml b/i18n/ja.yaml
new file mode 100644
index 0000000..34ba240
--- /dev/null
+++ b/i18n/ja.yaml
@@ -0,0 +1,27 @@
+global:
+ language: "JA"
+
+wip:
+ other: "æºåäž"
+
+index-description:
+ other: "ãã¡ã㯠Lemon's Resting Area åã³ Lemon73 ã®å
¬åŒãŠã§ããµã€ãã§ãã"
+index-about-1:
+ other: "Lemon's Resting Area (ã¬ã¢ã³ã®äŒæ¯æ) ã¯ãLemon73 ã«ããã¯ãªãšã€ãã£ããªæŽ»åãè¡ãçµç¹ã§ãã"
+index-about-2:
+ other: "2022幎3æ22æ¥ããæŽ»åãéå§ããçŸåšã«è³ããŸã§éçºãã€ã©ã¹ãã®æç»ãã¯ãããšããå€å²ã«ãããæŽ»åãè¡ã£ãŠããŸãã"
+
+404-description:
+ other: "ããŒãžãèŠã€ãããŸããã"
+404-return-home-page:
+ other: "ãããããŒãžã«æ»ã"
+
+search-search-site:
+ other: "ãµã€ããæ€çŽ¢"
+search-type-here:
+ other: "æ€çŽ¢å
容ãå
¥åããŠãã ãã"
+# search-no-results:
+# other: "çµæãèŠã€ãããŸããã§ããã"
+
+lang_select_title:
+ other: "ãã®ä»ã®èšèª"
diff --git a/index.html b/index.html
deleted file mode 100644
index a185b11..0000000
--- a/index.html
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- 掻åå
容
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- åºå ± / 掻åç¶æ³æ²ç€º
-
-
- éå¶
-
-
-
diff --git a/ivy/index.html b/ivy/index.html
deleted file mode 100644
index cadee4f..0000000
--- a/ivy/index.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- Ivy Cafeteria
- ã²ãŒã &ã·ããªãª
-
-
-
-
-
- 掻åå±¥æŽ
-
-
-
-
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..a29faac
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,19 @@
+{{ define "main" }}
+
+ 404 Not Found
+ {{ .LinkTitle }}
+ {{ .Summary }}
+ {{ end }}
+{{ end }}
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..50fc92d
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,8 @@
+{{ define "main" }}
+ {{ .Title }}
+ {{ .Content }}
+ {{ range .Pages }}
+ {{ .LinkTitle }}
+ {{ .Summary }}
+ {{ end }}
+{{ end }}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..7e286c8
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,10 @@
+{{ define "main" }}
+ {{ .Title }}
+
+ {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
+ {{ $dateHuman := .Date | time.Format ":date_long" }}
+
+
+ {{ .Content }}
+ {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+{{ end }}
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..37cb015
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,108 @@
+{{ define "main" }}
+
+{{ partial "search-index.html" . }}
+
+Welcome to Lemonium!
+
+
+
+
Information
+
+
+Research & Development
+
+
+{{ if eq .Site.Language.Lang "ja" }}
+About
+
+
+ {{ i18n "index-about-2" }}
+Contacts
+
+
+
+{{ end }}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..675237a
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,6 @@
+
+ {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
+
+ {{- end }}
+
+ {{- range . }}
+
+
+{{ end }}
diff --git a/lf/index.html b/lf/index.html
deleted file mode 100644
index 5ac59bf..0000000
--- a/lf/index.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
Lemon's Resting Area
-
- Lemon Festival
- éå¬
- 2022幎
-
-
-
-
-
-
-
-
-
-
-
- 2023幎
-
-
-
-
-
-
-
-
-
-
-
diff --git a/lfa/index.html b/lfa/index.html
deleted file mode 100644
index 8efaa79..0000000
--- a/lfa/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- ã¬ã¢ã³ç ç©¶æ
- 掻åå±¥æŽ
-
-
-
-
diff --git a/old/coi.html b/old/coi.html
deleted file mode 100644
index dbc0285..0000000
--- a/old/coi.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- COI Design
- Lemon's Resting Area
-
- ColorManager
- ã«ã©ãŒãããŒãžã£ãŒ
-
-
- Lemon 1200 Blue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Lemon 1550 Core
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Lemon 1340 Drink
-
-
-
-
diff --git a/old/kiss.html b/old/kiss.html
deleted file mode 100644
index f0c1e68..0000000
--- a/old/kiss.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- KISS Create
- 掻åå±¥æŽ
-
-
-
-
diff --git a/old/neo.html b/old/neo.html
deleted file mode 100644
index 78d45d6..0000000
--- a/old/neo.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- NEO Tech
- 掻åå±¥æŽ
-
-
-
- OSSåå
-
-
-
-
diff --git a/old/standard.html b/old/standard.html
deleted file mode 100644
index 3beda37..0000000
--- a/old/standard.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- ç¬èªèŠæ Œ
-
-
- ã©ã€ã»ã³ã¹
- ãœãããŠã§ã¢æšæºèŠæ Œ
- ã«ã©ãŒãããŒãžã£ãŒ
- Lemon's Resting Area
-
- Discord
-
-
-
-
-
-
-
-
-
-
-
-
- Discord
-
- LECã¡ã€ã³ãµãŒã㌠(æ§)
- ãçµµæããµãŒããŒ
- Lemon's Resting Area
-
- Fediverse
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Mastodon
-
- Fedibird
- Lemon's Resting Area
-
- SNS
-
- ã³ã¡ã³ãç³»
-
-
- åç»ç³»
-
-
-
- æè¡ç³»
-
-
-
- ã€ã©ã¹ãç³»
-
-
-
- Q&Aç³»
-
-
-
- ãŠã§ããµã€ã
-
-
-
- ãã®ä»
-
-
-
-
diff --git a/sns/misskey-io.html b/sns/misskey-io.html
deleted file mode 100644
index 7cbc24b..0000000
--- a/sns/misskey-io.html
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- è¿æ¥ã¯ Misskey.io ã®å©çšãå€ãããã¡ãã¯ã»ãšãã©å©çšããŠããŸããã
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- çŸæç¹ã§ã¯ã KDE ã®æ¥æ¬èªç¿»èš³é¢é£ã®æç« ããŸãšããããŠããŸãã
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- æçš¿èªäœã¯ããŸãé »ç¹ã«ã¯è¡ãããŠããŸããããè±èªååãã®æçš¿ãç¶ããŠããŸãã
- YouTubeã§æçš¿ããåç»ã®å
¬åŒè»¢èŒãªã©ãäž»ã«è¡ã£ãŠããŸãã
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- åç»æçš¿ã«ç¹åããŠãããšããç¹åŸŽãçãããŠãç·å倧ç¥ã§ãã LF ããã以å€ã®æçš¿ãè¡ã£ãŠããŸãã
- æçš¿é »åºŠã¯ããªãäœãã§ããã LF ãªã©ã¯ã¯ãªãªãã£ãŒãããªãé«ããªã£ãŠããŸãã®ã§ããã²ã芧ãã ããã
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- Blowfish
-
-
-
-
-
-
diff --git a/social/electron-net.html b/social/electron-net.html
deleted file mode 100644
index c5240df..0000000
--- a/social/electron-net.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- authors/**
and samples/**
) (#1361)Lemon's Resting Area
-
- Electron.NET
-
-
-
-
-
-
diff --git a/social/index.html b/social/index.html
deleted file mode 100644
index 6772c6e..0000000
--- a/social/index.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- ãããã£ãŒã«
- ã³ãŒãã£ã³ã°
-
-
-
- ããŒã«
-
-
-
-
-
diff --git a/social/kde.html b/social/kde.html
deleted file mode 100644
index 55274c9..0000000
--- a/social/kde.html
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Ubuntu + KDE Plasma ãæ¡çšãã Linux ç³» OS
-
-
-
-
- (äžéšã®ç¿»èš³è
)
- Medibang Paint
- Krita ãèŠã€ãããŸã§ã¯ã¡ã€ã³ã ã£ã
- GIMP
-
-
- MMD
- (Windows å°çš)
-
-
-
- UnityUnreal Engine
- LRA (åœæã® LEC) èšç«ä»¥åã®æ°å¹Žé䜿ã£ãŠãã
-
- ãã§ããã¯ã«ã«
-
-
-
- NetBeans IDE
- æ Java ã® SkyColors ãäœã£ã
- Arduino IDE
- (å¥ã®å矩ã§å©çš)
-
- Qt ã¯ããäžåºŠææŠããŠã¿ãã
- QML æžããããã«ãªããããªã
- GitHub DesktopFileZilla
- (å
¬éããŠãã SNS ã¯ãã¡ã)
- 以äžã¯ãå人ã§å©çšããŠãã (éå
¬éã®) SNS ã§ã
-
-
-
- Skype
-
-
- LMMSDomino
- Midi ç³»ã®äœæ²ããŒã« (Windows å°çš)
- Synthesizer V Studio Basic
-
-
- ããããã£ãš
- æãçé
ä¿¡ãããããšããŠãããšãã«äœ¿ãããšæã£ãŠããŸãã
- Voice VoxCoeiroinkSofTalk
-
-
-
- (äžéšã®ç¿»èš³è
)
-
- OSS ã«ããŠæ¬²ãã⊠(æé¡)
- YMM3 / YMM4
- YMM2 ã䜿ã£ãããšãããäžä»£ã§ã
- éã«ãææ°ã® YMM4 ã¯ããããããªã
-
-
-
- KDE ã®ãœãããŠã§ã¢ã翻蚳ããããã®ãœãããŠã§ã¢
-
- v0.1.0 ããã®ãããŒãŠãŒã¶ãŒ
-
- ããœã³ã³ãšæºåž¯ç«¯æ«ã®é£æºã«
-
- ããœã³ã³ãå§ãããšãããã®å
- çŸä»£ã®ã¢ãã³ãã©ãŠã¶ã®äžã§éäžã®æŽå²ãèªãäŒçµ±çãªãã©ãŠã¶
-
- ãã¡ã€ã«æŽçã«äŸ¿å©ãªã¢ããªã±ãŒã·ã§ã³
- (äžéšã®ç¿»èš³è
)
- Lemon's Resting Area
-
- KDE
-
-
-
-
-
- 翻蚳
-
-
-
-
-
-
-
-
- éçº
-
-
- è³æ
-
-
- åºå ±
- ãããã°
-
-
-
-
diff --git a/social/others.html b/social/others.html
deleted file mode 100644
index c8d8450..0000000
--- a/social/others.html
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Lemon's Resting Area
-
- ãã®ä»ã®çµç¹
- Errands
-
-
-
-
- Dolores v2Simple Icons
-
-
-
- .NET Workshops and Presentations
-
-
-
- Iron Python
-
-
-
-
diff --git a/static/.nojekyll b/static/.nojekyll
new file mode 100644
index 0000000..e69de29
diff --git a/favicon.png b/static/_favicon.png
similarity index 100%
rename from favicon.png
rename to static/_favicon.png
diff --git a/static/archives/kiss-color.json b/static/archives/kiss-color.json
new file mode 100644
index 0000000..91f115b
--- /dev/null
+++ b/static/archives/kiss-color.json
@@ -0,0 +1,80 @@
+[
+ {
+ "name": "Lemon 1200 Blue",
+ "short-name": "LEC-CS001",
+ "color-theme": [
+ {
+ "color-name": "SKY",
+ "color-code": "#B3FFFA"
+ },
+ {
+ "color-name": "Blue",
+ "color-code": "#5152FF"
+ },
+ {
+ "color-name": "B+G",
+ "color-code": "#51FFE0"
+ },
+ {
+ "color-name": "Green",
+ "color-code": "#51FFA0"
+ },
+ {
+ "color-name": "Kool",
+ "color-code": "#85F1FF"
+ }
+ ]
+ },
+ {
+ "name": "Lemon 1550 Core",
+ "short-name": "LEC-CS002",
+ "color-theme": [
+ {
+ "color-name": "Dark",
+ "color-code": "#AC6AFF"
+ },
+ {
+ "color-name": "Core",
+ "color-code": "#8A6AFF"
+ },
+ {
+ "color-name": "Pink",
+ "color-code": "#FF6AEC"
+ },
+ {
+ "color-name": "Red",
+ "color-code": "#FF6AAD"
+ },
+ {
+ "color-name": "Kill",
+ "color-code": "#FF6A7F"
+ }
+ ]
+ },
+ {
+ "name": "Lemon 1340 Drink",
+ "short-name": "LEC-CS003",
+ "color-theme": [
+ {
+ "color-name": "H2O",
+ "color-code": "#96FFFF"
+ },
+ {
+ "color-name": "Drug",
+ "color-code": "#96FFBD"
+ },
+ {
+ "color-name": "Fine",
+ "color-code": "#FFC896"
+ },
+ {
+ "color-name": "Sky",
+ "color-code": "#A696FF"
+ },
+ {
+ "color-name": "LEC",
+ "color-code": "#F0FF96"
+ }
+ ]
+ }
+]
diff --git a/static/archives/kiss-color.md b/static/archives/kiss-color.md
new file mode 100644
index 0000000..30c3f81
--- /dev/null
+++ b/static/archives/kiss-color.md
@@ -0,0 +1,33 @@
+# Color Manager
+
+
+
+
+
+Lemon Electronic Computer æä»£ã® KISS ã«ãã£ãŠäœæãããã«ã©ãŒããŒãã§ããçŸåšã§ã¯å
šãå©çšãããŠããŸããããã¢ãŒã«ã€ããšããŠãããã«ä¿ç®¡ããŠãããŸãã
+
+- [JSON 圢åŒ](./kiss-color.json)
diff --git a/static/archives/social-aa.md b/static/archives/social-aa.md
new file mode 100644
index 0000000..cc22259
--- /dev/null
+++ b/static/archives/social-aa.md
@@ -0,0 +1,142 @@
+# ASCII Arts
+
+SNS
+```
+### # # ###
+# ## # #
+### # # # ###
+ # # ## #
+### # # ###
+```
+
+Discord
+```
+ ____ ____
+ / \_______/ \
+ / \
+ | __ __ |
+ | | | | | |
+ | |__| |__| |
+ / _ _ \
+ \_ \\_________// _/
+ \__/ \__/
+ -----------
+ |LRA SNS|
+ -----------
+```
+
+Fediverse/Mastodon
+```
+ ________________
+/ ____ ____ \
+| / __ \/ __ \ |
+| | | | | | | |
+| |_| |__| |_| |
+\_ __________/
+ \_ \___
+ \______|
+ -----------
+ |LRA SNS|
+ -----------
+```
+
+YouTube
+```
+ ___ |
+ /DDD\ |
+ /D D D\___ |
+ _/D D D D\ \ |<- äžããèŠããã«
+ //D D D D\ \ /=== |
+//D D _ D D\ \|\ \ |
+/ ___/|\ @@ | |<- è¡ç¯
+__/7/\\I_\__0__\_|\ |
+_--___--_\.o-----|- |
+ 0 0 |<- è»
+=== === === === |<- éè·¯ã®çœç·
+ -----------
+ |LRA SNS|
+ -----------
+```
+
+Reddit
+```
+ ______________
+ |@Reddit []|
+ |------------|
+ |O<--------- |___
+ | | | | []|
+ | | | |---|
+ | |________| |_| |
+ |____________| |
+ |O<--------- |
+ | | | |
+ |_L________I_|
+ -----------
+ |LRA SNS|
+ -----------
+```
+
+Qiita
+```
+ ___ ____
+ | | / __|
+ | | | / ___
+ | |____ | \_|__ |
+ L_____| \____|_|
+ _________ ____ ____
+ |__ __| | \ / |
+ | | | \ \/ / |
+ | | | |\ /| |
+ |_| |_| \__/ |_|
+ -----------
+ |LRA SNS|
+ -----------
+```
+
+Misskey
+```
+ _____ _ _
+ | |_|___ ___| |_ ___ _ _
+ | | | | |_ -|_ -| '_| -_| | |
+ |_|_|_|_|___|___|_,_|___|_ |
+ |___|
+ -----------
+ |LRA SNS|
+ -----------
+```
+
+## SNS Links
+
+- Reddit - https://www.reddit.com/user/Lemon73-Computing
+- Fediverse -> `/archives/social.json`
+
+- Meta
+ - Instagram - https://www.instagram.com/lemon73_digital/
+ - Facebook - https://www.facebook.com/profile.php?id=100089223282478
+- YouTube - https://www.youtube.com/@lemon73
+- Development
+ - GitHub - https://github.com/Lemon73-Computing
+ - KDE Invent - https://invent.kde.org/futurelemon
+ - Qiita - https://qiita.com/Lemon73
+ - Microsoft Learn - https://learn.microsoft.com/ja-jp/users/lemon73/transtyle/d825jupyjmp01qg
+ - Krita Artist - https://krita-artists.org/u/lemon73/
+- Arts
+ - Pinterest - https://www.pinterest.jp/SuperLemon73/_created/
+ - ARTstreet - https://medibang.com/mypage/
+ - DeviantArt - https://www.deviantart.com/lemon73neo
+ - Pixiv - https://www.pixiv.net/users/102017947
+- Quora - https://jp.quora.com/profile/Lemon73
+- Websites -> `/ja/about/website` and `/en/about/website`
+ - Lemonium (here)
+ - Alice Project - https://alicenovel.web.app
+ - LEC (Archived) - https://lemon73.gitlab.io
+ - LEC Data (Archived) - http://lemonfuture.s239.xrea.com
+- Booth - https://lemon73.booth.pm
+- Discord (UserID: `.lemon73`)
+- Element - https://matrix.to/#/@lemon73:matrix.org
+- Unity play - https://play.unity.com/u/Lemon73
+- Steam - https://steamcommunity.com/profiles/76561199447542409/
diff --git a/static/archives/social.json b/static/archives/social.json
new file mode 100644
index 0000000..12fe9f4
--- /dev/null
+++ b/static/archives/social.json
@@ -0,0 +1,72 @@
+[
+ {
+ "name": "Lemon73",
+ "username": "lemon73",
+ "host": "misskey.io",
+
+ "url": "https://misskey.io/@lemon73",
+ "uri": "https://misskey.io/users/9bn8hg2oeh",
+ "createdAt": "2023-02-25T07:57:35.520Z",
+ "instance": {
+ "name":"Misskey.io",
+ "softwareName":"misskey",
+ "softwareVersion":"2024.5.0-io.4d"
+ }
+ },
+ {
+ "name": "",
+ "username": "Lemon73",
+ "host": "mstdn.jp",
+
+ "url":"https://mstdn.jp/@Lemon73",
+ "uri":"https://mstdn.jp/users/Lemon73",
+ "createdAt": "2022-11-03T10:43:50.696Z",
+ "instance": {
+ "name":"mstdn.jp",
+ "softwareName":"mastodon",
+ "softwareVersion":"4.1.20"
+ }
+ },
+ {
+ "name": "",
+ "username": "Lemon73",
+ "host": "fedibird.com",
+
+ "url":"https://fedibird.com/@Lemon73",
+ "uri":"https://fedibird.com/users/Lemon73",
+ "createdAt": "2023-02-03T11:39:53.019Z",
+ "instance": {
+ "name":"Fedibird",
+ "softwareName":"fedibird",
+ "softwareVersion":"0.1"
+ }
+ },
+ {
+ "name": "Ivy Cafeteria éçºå®€",
+ "username": "ivy",
+ "host": "misskey.flowers",
+
+ "url":"https://misskey.flowers/@ivy",
+ "uri":"https://misskey.flowers/users/9yze8jb88pmv0bsj",
+ "createdAt": "2024-10-05T07:44:07.889Z",
+ "instance": {
+ "name":"ã¯ãªã¿ãããŒ",
+ "softwareName":"misskey",
+ "softwareVersion":"2024.11.0-hanami.600369a54"
+ }
+ },
+ {
+ "name": "komari",
+ "username": "komari",
+ "host": "misskey.04.si",
+
+ "url":"https://misskey.04.si/@komari",
+ "uri":"https://misskey.04.si/users/9opix357nj",
+ "createdAt": "2024-01-25T07:54:26.145Z",
+ "instance": {
+ "name":"ãããã±ã",
+ "softwareName":"misskey",
+ "softwareVersion":"2024.11.0-pie-3.4.4"
+ }
+ }
+]
diff --git a/static/archives/website-history.md b/static/archives/website-history.md
new file mode 100644
index 0000000..a9003fe
--- /dev/null
+++ b/static/archives/website-history.md
@@ -0,0 +1,61 @@
+# ãŠã§ããµã€ãã®æŽå²
+
+æ§ LEC åã³ãLRA ç³»åã®ãŠã§ããµã€ãã®æŽå²ã«é¢ããŠèšèŒããŸãã
+
+(æ¥ä»ã¯å€§äœã§ããGit ã®å±¥æŽãããšã«ããŠããŸãããæã¯ã³ããããšãããã€ããã¿ã€ãã³ã°ãç°ãªããããæ£ç¢ºãªæ¥ä»ã§ã¯ãªãå¯èœæ§ãé«ãã§ã)
+
+```mermaid
+%%{
+ init: {
+ 'theme': 'forest',
+ 'gitGraph': { 'mainBranchName': 'free-website' }
+ }
+}%%
+
+gitGraph
+ branch lemon73-gitlab.io
+ branch lemon73-blog
+ branch alicenovel-web-app
+ checkout free-website
+ commit id: "2023/1/x"
+ commit id: "2023/1/17"
+
+ branch lemon73-computing-github-io
+ commit id: "2023/1/31"
+
+ checkout lemon73-gitlab.io
+ commit id: "2023/5/26"
+
+ checkout alicenovel-web-app
+ commit id: "2023/9/1"
+
+ checkout lemon73-gitlab.io
+ commit id: "2023/11/12"
+
+ checkout lemon73-blog
+ commit id: "2024/2/19"
+
+ checkout lemon73-computing-github-io
+ commit id: "2024/3/25"
+
+ checkout lemon73-blog
+ commit id: "2025/1/24"
+
+ checkout alicenovel-web-app
+ merge lemon73-computing-github-io
+ commit id: "2025/2/x"
+
+ checkout lemon73-computing-github-io
+ merge lemon73-blog
+ merge lemon73-gitlab.io
+ commit id: "2025/3/13 (Hugo-based)"
+
+ branch lemonium-net
+ commit id: "2025/x/x"
+
+ checkout alicenovel-web-app
+ commit id: "future (alice)"
+
+ checkout lemonium-net
+ commit id: "future (lemonium)"
+```
diff --git a/static/favicon.ico b/static/favicon.ico
new file mode 100644
index 0000000..2b04d28
Binary files /dev/null and b/static/favicon.ico differ
diff --git a/static/images/fluent-icons/dismiss.svg b/static/images/fluent-icons/dismiss.svg
new file mode 100644
index 0000000..3cb3656
--- /dev/null
+++ b/static/images/fluent-icons/dismiss.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/fluent-icons/list.svg b/static/images/fluent-icons/list.svg
new file mode 100644
index 0000000..279bddd
--- /dev/null
+++ b/static/images/fluent-icons/list.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/fluent-icons/search.svg b/static/images/fluent-icons/search.svg
new file mode 100644
index 0000000..2afb5be
--- /dev/null
+++ b/static/images/fluent-icons/search.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/icons-source.md b/static/images/icons-source.md
new file mode 100644
index 0000000..f35652b
--- /dev/null
+++ b/static/images/icons-source.md
@@ -0,0 +1,9 @@
+## Icons References
+
+### Social Media Icons
+
+The social media icons in [`static/images/social-media`](./social-media/) were obtained from [Simple Icons](https://simpleicons.org).
+
+### Fluent Icons
+
+The icons in [`static/images/fluent-icons`](./fluent-icons/) were obtained from [Fluent Icons](https://fluenticons.co).
diff --git a/lf/img/lf2202.png b/static/images/lemon-festival/lf2202.png
similarity index 100%
rename from lf/img/lf2202.png
rename to static/images/lemon-festival/lf2202.png
diff --git a/lf/img/lf2203.png b/static/images/lemon-festival/lf2203.png
similarity index 100%
rename from lf/img/lf2203.png
rename to static/images/lemon-festival/lf2203.png
diff --git a/lf/img/lf2204.png b/static/images/lemon-festival/lf2204.png
similarity index 100%
rename from lf/img/lf2204.png
rename to static/images/lemon-festival/lf2204.png
diff --git a/lf/img/lf2301.png b/static/images/lemon-festival/lf2301.png
similarity index 100%
rename from lf/img/lf2301.png
rename to static/images/lemon-festival/lf2301.png
diff --git a/static/images/lemon-festival/lf2302.png b/static/images/lemon-festival/lf2302.png
new file mode 100755
index 0000000..bc56b30
Binary files /dev/null and b/static/images/lemon-festival/lf2302.png differ
diff --git a/static/images/lemon-festival/lf2303-draft.png b/static/images/lemon-festival/lf2303-draft.png
new file mode 100755
index 0000000..60cc39e
Binary files /dev/null and b/static/images/lemon-festival/lf2303-draft.png differ
diff --git a/static/images/lemon-festival/lf2303.png b/static/images/lemon-festival/lf2303.png
new file mode 100755
index 0000000..e263d26
Binary files /dev/null and b/static/images/lemon-festival/lf2303.png differ
diff --git a/static/images/logo.svg b/static/images/logo.svg
new file mode 100644
index 0000000..16e96db
--- /dev/null
+++ b/static/images/logo.svg
@@ -0,0 +1,235 @@
+
+
+
\ No newline at end of file
diff --git a/static/images/social-media/activitypub.svg b/static/images/social-media/activitypub.svg
new file mode 100644
index 0000000..edf0e72
--- /dev/null
+++ b/static/images/social-media/activitypub.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/discord.svg b/static/images/social-media/discord.svg
new file mode 100644
index 0000000..9d7796b
--- /dev/null
+++ b/static/images/social-media/discord.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/github.svg b/static/images/social-media/github.svg
new file mode 100644
index 0000000..538ec5b
--- /dev/null
+++ b/static/images/social-media/github.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/kde.svg b/static/images/social-media/kde.svg
new file mode 100644
index 0000000..a11654e
--- /dev/null
+++ b/static/images/social-media/kde.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/mastodon.svg b/static/images/social-media/mastodon.svg
new file mode 100644
index 0000000..5e3b7e1
--- /dev/null
+++ b/static/images/social-media/mastodon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/misskey.svg b/static/images/social-media/misskey.svg
new file mode 100644
index 0000000..d94b5cc
--- /dev/null
+++ b/static/images/social-media/misskey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/qiita.svg b/static/images/social-media/qiita.svg
new file mode 100644
index 0000000..1174622
--- /dev/null
+++ b/static/images/social-media/qiita.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/reddit.svg b/static/images/social-media/reddit.svg
new file mode 100644
index 0000000..ea03883
--- /dev/null
+++ b/static/images/social-media/reddit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/rss.svg b/static/images/social-media/rss.svg
new file mode 100644
index 0000000..14a6f3f
--- /dev/null
+++ b/static/images/social-media/rss.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/youtube.svg b/static/images/social-media/youtube.svg
new file mode 100644
index 0000000..0492366
--- /dev/null
+++ b/static/images/social-media/youtube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/social-media/zenn.svg b/static/images/social-media/zenn.svg
new file mode 100644
index 0000000..d432731
--- /dev/null
+++ b/static/images/social-media/zenn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/videos/.gitkeep b/static/videos/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/style.css b/style.css
deleted file mode 100644
index f1dd2d6..0000000
--- a/style.css
+++ /dev/null
@@ -1,51 +0,0 @@
-@charset "UTF-8";
-
-:root{
- --white: #fff;
- --black: #2f2f2f;
-}
-
-@media (prefers-color-scheme: light){
- html{
- background-color: var(--white);
- color: var(--black);
- }
-
- a{
- color: darkslateblue;
- }
-
- ::selection{
- background-color: rgba(0, 0, 0, .2);
- }
-}
-@media (prefers-color-scheme: dark){
- html{
- background-color: var(--black);
- color: var(--white);
- }
-
- a{
- color: aquamarine;
- }
-
- ::selection{
- background-color: rgba(255, 255, 255, .2);
- }
-}
-
-*{
- font-family: "æžžãŽã·ãã¯", "Noto Sans", "Meiryo", "Arial", sans;
- font-weight: 500;
-}
-
-html{
- margin: 0 10% 46px 10%;
-}
-
-h1 a{
- text-decoration: none;
-}
-
-/* color when we touch URL in smartphone */
-a:active{-webkit-tap-highlight-color: rgba(255, 255, 255, .2);}