{{ T "errors.404" }}
9 |{{ T "errors.404_description" }}
10 |├── .hugo_build.lock ├── .gitignore ├── README.md ├── themes └── hugo-blog-awesome │ ├── assets │ ├── sass │ │ ├── _custom.scss │ │ ├── _listpage.scss │ │ ├── _tableOfContent.scss │ │ ├── _goToTop.scss │ │ ├── _miscellaneous.scss │ │ ├── _fonts.scss │ │ ├── main.scss │ │ ├── _code.scss │ │ ├── _post.scss │ │ └── _navbar.scss │ ├── js │ │ ├── main.js │ │ ├── goToTop.js │ │ └── theme.js │ ├── icons │ │ ├── favicon.ico │ │ ├── mstile-70x70.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ ├── apple-touch-icon.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── browserconfig.xml │ │ ├── site.webmanifest │ │ ├── book-icon-dark.svg │ │ ├── book-icon-light.svg │ │ ├── favicon.svg │ │ └── safari-pinned-tab.svg │ └── code-highlight.css │ ├── exampleSite │ ├── content │ │ ├── de │ │ │ ├── posts │ │ │ │ ├── _index.md │ │ │ │ ├── markdown-syntax │ │ │ │ │ ├── 1.jpg │ │ │ │ │ └── index.md │ │ │ │ ├── rich-content │ │ │ │ │ └── index.md │ │ │ │ ├── math-typesetting │ │ │ │ │ └── index.md │ │ │ │ ├── emoji-support │ │ │ │ │ └── index.md │ │ │ │ ├── table-of-content │ │ │ │ │ └── index.md │ │ │ │ └── placeholder-text │ │ │ │ │ └── index.md │ │ │ ├── _index.md │ │ │ └── pages │ │ │ │ └── about.md │ │ ├── en │ │ │ ├── posts │ │ │ │ ├── _index.md │ │ │ │ ├── markdown-syntax │ │ │ │ │ ├── 1.jpg │ │ │ │ │ └── index.md │ │ │ │ ├── rich-content │ │ │ │ │ └── index.md │ │ │ │ ├── math-typesetting │ │ │ │ │ └── index.md │ │ │ │ ├── emoji-support │ │ │ │ │ └── index.md │ │ │ │ ├── table-of-content │ │ │ │ │ └── index.md │ │ │ │ └── placeholder-text │ │ │ │ │ └── index.md │ │ │ ├── _index.md │ │ │ └── pages │ │ │ │ └── about.md │ │ ├── ja │ │ │ ├── posts │ │ │ │ ├── _index.md │ │ │ │ ├── markdown-syntax │ │ │ │ │ ├── 1.jpg │ │ │ │ │ └── index.md │ │ │ │ ├── rich-content │ │ │ │ │ └── index.md │ │ │ │ ├── math-typesetting │ │ │ │ │ └── index.md │ │ │ │ ├── emoji-support │ │ │ │ │ └── index.md │ │ │ │ ├── table-of-content │ │ │ │ │ └── index.md │ │ │ │ └── placeholder-text │ │ │ │ │ └── index.md │ │ │ ├── _index.md │ │ │ └── pages │ │ │ │ └── about.md │ │ ├── zh │ │ │ ├── posts │ │ │ │ ├── _index.md │ │ │ │ ├── markdown-syntax │ │ │ │ │ ├── 1.jpg │ │ │ │ │ └── index.md │ │ │ │ ├── rich-content │ │ │ │ │ └── index.md │ │ │ │ ├── math-typesetting │ │ │ │ │ └── index.md │ │ │ │ ├── table-of-content │ │ │ │ │ └── index.md │ │ │ │ ├── emoji-support │ │ │ │ │ └── index.md │ │ │ │ └── placeholder-text │ │ │ │ │ └── index.md │ │ │ ├── _index.md │ │ │ └── pages │ │ │ │ └── about.md │ │ ├── fr │ │ │ ├── posts │ │ │ │ ├── _index.md │ │ │ │ ├── markdown-syntax │ │ │ │ │ └── 1.jpg │ │ │ │ ├── rich-content │ │ │ │ │ └── index.md │ │ │ │ ├── table-of-content │ │ │ │ │ └── index.md │ │ │ │ ├── math-typesetting │ │ │ │ │ └── index.md │ │ │ │ ├── emoji-support │ │ │ │ │ └── index.md │ │ │ │ └── placeholder-text │ │ │ │ │ └── index.md │ │ │ ├── _index.md │ │ │ └── pages │ │ │ │ └── about.md │ │ ├── it │ │ │ ├── posts │ │ │ │ ├── _index.md │ │ │ │ ├── markdown-syntax │ │ │ │ │ ├── 1.jpg │ │ │ │ │ └── index.md │ │ │ │ ├── rich-content │ │ │ │ │ └── index.md │ │ │ │ ├── table-of-content │ │ │ │ │ └── index.md │ │ │ │ ├── math-typesetting │ │ │ │ │ └── index.md │ │ │ │ ├── emoji-support │ │ │ │ │ └── index.md │ │ │ │ └── placeholder-text │ │ │ │ │ └── index.md │ │ │ ├── _index.md │ │ │ └── pages │ │ │ │ └── about.md │ │ ├── ru │ │ │ ├── posts │ │ │ │ ├── _index.md │ │ │ │ ├── markdown-syntax │ │ │ │ │ ├── 1.jpg │ │ │ │ │ └── index.md │ │ │ │ ├── rich-content │ │ │ │ │ └── index.md │ │ │ │ ├── math-typesetting │ │ │ │ │ └── index.md │ │ │ │ ├── emoji-support │ │ │ │ │ └── index.md │ │ │ │ ├── table-of-content │ │ │ │ │ └── index.md │ │ │ │ └── placeholder-text │ │ │ │ │ └── index.md │ │ │ ├── _index.md │ │ │ └── pages │ │ │ │ └── about.md │ │ └── br │ │ │ ├── posts │ │ │ ├── _index.md │ │ │ ├── markdown-syntax │ │ │ │ ├── 1.jpg │ │ │ │ └── index.md │ │ │ ├── rich-content │ │ │ │ └── index.md │ │ │ ├── math-typesetting │ │ │ │ └── index.md │ │ │ ├── emoji-support │ │ │ │ └── index.md │ │ │ ├── table-of-content │ │ │ │ └── index.md │ │ │ └── placeholder-text │ │ │ │ └── index.md │ │ │ ├── _index.md │ │ │ └── pages │ │ │ └── about.md │ ├── go.mod │ ├── assets │ │ └── avatar.jpg │ ├── hugo-blog-awesome.work │ └── go.sum │ ├── go.mod │ ├── images │ ├── tn.png │ ├── dark.png │ ├── light.png │ ├── pagespeed.png │ └── screenshot.png │ ├── layouts │ ├── partials │ │ ├── meta │ │ │ ├── main.html │ │ │ ├── standard.html │ │ │ └── post.html │ │ ├── comments.html │ │ ├── socialIcons.html │ │ ├── svgs │ │ │ ├── arrowUp.svg │ │ │ ├── home.svg │ │ │ ├── menu.svg │ │ │ └── sun.svg │ │ ├── scriptsBodyStart.html │ │ ├── browserconfig.html │ │ ├── toc.html │ │ ├── footer.html │ │ ├── postCard.html │ │ ├── bio.html │ │ ├── helpers │ │ │ └── katex.html │ │ ├── webmanifest.html │ │ ├── scriptsBodyEnd.html │ │ ├── head.html │ │ └── header.html │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── list.html │ │ ├── single.html │ │ └── rss.xml │ └── index.html │ ├── .gitignore │ ├── archetypes │ └── default.md │ ├── static │ └── fonts │ │ └── Roboto │ │ ├── roboto-v30-latin-regular.eot │ │ ├── roboto-v30-latin-regular.ttf │ │ ├── roboto-v30-latin-regular.woff │ │ └── roboto-v30-latin-regular.woff2 │ ├── i18n │ ├── zh-cn.yaml │ ├── ja.yaml │ ├── en-gb.yaml │ ├── en-us.yaml │ ├── ru-ru.yaml │ ├── pt-br.yaml │ ├── fr-fr.yaml │ ├── it.yaml │ └── de-de.yaml │ ├── theme.toml │ ├── CONTRIBUTING.md │ └── .gitattributes ├── content ├── sidebar │ ├── bio.md │ ├── basic-info.md │ └── _index.md └── posts │ └── popit.html ├── assets └── logo.png ├── archetypes └── default.md ├── hugo.toml └── .github └── workflows └── hugo.yml /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | resources 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # chei-l.github.io 2 | aaa 3 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/sass/_custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/js/main.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /content/sidebar/bio.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | 5 | 안녕! -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/assets/logo.png -------------------------------------------------------------------------------- /content/sidebar/basic-info.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | - age: 8 5 | - pronouns: she/her -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/de/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Posts" 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/en/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Posts" 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/ja/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "投稿" 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/zh/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "文章" 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/fr/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Articles" 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/it/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Articoli" 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/ru/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Записи" 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hugo-sid/hugo-blog-awesome 2 | 3 | go 1.22.0 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/br/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Publicações" 3 | --- 4 | -------------------------------------------------------------------------------- /content/sidebar/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | icon-use-flower-shape: false 4 | icon-path: "/logo.png" 5 | --- -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/br/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Início" 3 | author : "Autor" 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/ja/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "ホーム" 3 | author : "Hugo Authors" 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/zh/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "首页" 3 | author : "Hugo Authors" 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/de/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Home" 3 | author : "Hugo Authors" 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/en/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Home" 3 | author : "Hugo Authors" 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/fr/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Home" 3 | author : "Hugo Authors" 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/it/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Home" 3 | author : "Hugo Authors" 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/ru/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Домашняя" 3 | author : "Hugo Authors" 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hugo-sid/hugo-blog-awesome/exampleSite 2 | 3 | go 1.22.0 4 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/images/tn.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/layouts/partials/meta/main.html: -------------------------------------------------------------------------------- 1 | {{ partial "meta/standard.html" . }} 2 | {{ partial "meta/post.html" . }} 3 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/images/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/images/dark.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/images/light.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = '{{ .Date }}' 3 | draft = true 4 | title = '{{ replace .File.ContentBaseName "-" " " | title }}' 5 | +++ 6 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | .hvm 3 | exampleSite/public/ 4 | exampleSite/resources/ 5 | exampleSite/.hugo_build.lock 6 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/images/pagespeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/images/pagespeed.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/images/screenshot.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 3 | date: {{ .Date }} 4 | draft: true 5 | description: 6 | isStarred: false 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/favicon.ico -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/code-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/code-highlight.css -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/mstile-70x70.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/assets/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/assets/avatar.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/favicon-16x16.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/favicon-32x32.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/mstile-144x144.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/mstile-150x150.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/mstile-310x150.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/mstile-310x310.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/icons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/assets/icons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/static/fonts/Roboto/roboto-v30-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/static/fonts/Roboto/roboto-v30-latin-regular.eot -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/static/fonts/Roboto/roboto-v30-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/static/fonts/Roboto/roboto-v30-latin-regular.ttf -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/static/fonts/Roboto/roboto-v30-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/static/fonts/Roboto/roboto-v30-latin-regular.woff -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/br/posts/markdown-syntax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/content/br/posts/markdown-syntax/1.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/de/posts/markdown-syntax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/content/de/posts/markdown-syntax/1.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/en/posts/markdown-syntax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/content/en/posts/markdown-syntax/1.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/fr/posts/markdown-syntax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/content/fr/posts/markdown-syntax/1.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/it/posts/markdown-syntax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/content/it/posts/markdown-syntax/1.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/ja/posts/markdown-syntax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/content/ja/posts/markdown-syntax/1.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/ru/posts/markdown-syntax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/content/ru/posts/markdown-syntax/1.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/zh/posts/markdown-syntax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/exampleSite/content/zh/posts/markdown-syntax/1.jpg -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/static/fonts/Roboto/roboto-v30-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahwul/chei-l.github.io/main/themes/hugo-blog-awesome/static/fonts/Roboto/roboto-v30-latin-regular.woff2 -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/layouts/partials/comments.html: -------------------------------------------------------------------------------- 1 | {{- if .Site.Config.Services.Disqus.Shortname -}} 2 |
{{ T "errors.404_description" }}
10 |30 | {{ range $firstSection := (where .Site.Sections "Section" "in" (first 1 (.Site.Params.mainSections))) }} 31 | {{ T "home.see_all_posts" }} 32 | {{ end }} 33 |
34 | {{ end }} 35 |Test
95 | 96 | 97 | ``` 98 | 99 | ### 缩进四个空格的代码块 100 | 101 | 102 | 103 | 104 | 105 |Test
109 | 110 | 111 | 112 | ### 使用 Hugo 内置高亮短代码的代码块 113 | 114 | {{< highlight html >}} 115 | 116 | 117 | 118 | 119 |Test
123 | 124 | 125 | {{< /highlight >}} 126 | 127 | ### 内联代码 128 | 129 | 使用反引号在句子中引用 `variable`。 130 | 131 | ## 列表类型 132 | 133 | ### 有序列表 134 | 135 | 1. First item 136 | 2. Second item with some `code` in it 137 | 3. Third item 138 | 139 | ### 无序列表 140 | 141 | * List item 142 | * Another item with some `code` in it 143 | * And another item 144 | 145 | ### 嵌套列表 146 | 147 | * Fruit 148 | * Apple 149 | * Orange 150 | * Banana 151 | * Dairy 152 | * Milk 153 | * Cheese 154 | 155 | ## 其他元素 — abbr, sub, sup, kbd, mark 156 | 157 | GIF 是一种位图图像格式。 158 | 159 | H2O 160 | 161 | Xn + Yn = Zn 162 | 163 | 按下 CTRL+ALT+Delete 结束会话。 164 | 165 | 大多数 蝾螈 是夜行动物,捕食昆虫、蠕虫和其他小生物。 166 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/ja/posts/markdown-syntax/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Markdownの文法について 3 | date: 2023-02-11 4 | author: Hugo Authors 5 | description: この投稿では、基本的なマークダウンの文法と、HTML要素の整形について説明しています。 6 | isStarred: true 7 | --- 8 | 9 | この投稿ではHugoのコンテンツファイルでご利用いただける基本的なマークダウンの文法の説明と、HugoのテーマによってCSSで整形される一部のHTML要素についてご説明いたします。 10 | 11 | 12 | 13 | ## 見出し 14 | 15 | 以下に示す`Test
96 | 97 | 98 | ``` 99 | 100 | ### 4文字スペースでインデントしたコードブロック 101 | 102 | 103 | 104 | 105 | 106 |Test
110 | 111 | 112 | 113 | ### Hugoの内部ハイライトショートコードを利用したコードブロック 114 | 115 | {{< highlight html >}} 116 | 117 | 118 | 119 | 120 |Test
124 | 125 | 126 | {{< /highlight >}} 127 | 128 | ### インラインコード 129 | 130 | バックティックを利用することで`variable`を表現することができます。 131 | 132 | ## リストタイプ 133 | 134 | ### 順番のあるリスト 135 | 136 | 1. First item 137 | 2. Second item with some `code` in it 138 | 3. Third item 139 | 140 | ### 順番のないリスト 141 | 142 | * List item 143 | * Another item with some `code` in it 144 | * And another item 145 | 146 | ### 入れ子リスト 147 | 148 | * Fruit 149 | * Apple 150 | * Orange 151 | * Banana 152 | * Dairy 153 | * Milk 154 | * Cheese 155 | 156 | ## そのほかの要素 — abbr, sub, sup, kbd, mark 157 | 158 | GIFはビットマップの画像形式です。 159 | 160 | H2O 161 | 162 | Xn + Yn = Zn 163 | 164 | CTRL+ALT+Deleteを押してセッションを終了してください。 165 | 166 | ほとんどのサラマンダーは夜行性で、昆虫や蠕虫、そのほかの小動物を捕食します。 167 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/sass/_post.scss: -------------------------------------------------------------------------------- 1 | // Post wrapper 2 | .wrapper.post { 3 | @include media-query($on-mobile) { 4 | padding-left: $spacing-half; 5 | padding-right: $spacing-half; 6 | } 7 | } 8 | 9 | // Post title 10 | .header { 11 | margin-top: 7.8em; 12 | 13 | .header-title { 14 | font-size: 2em; 15 | line-height: 1.2; 16 | margin-top: 10px; 17 | margin-bottom: 20px; 18 | 19 | &.center { 20 | text-align: center; 21 | } 22 | 23 | @include media-query($on-mobile) { 24 | font-size: 1.9em; 25 | } 26 | } 27 | } 28 | 29 | // Post meta 30 | .post-meta { 31 | padding-top: 3px; 32 | line-height: 1.3; 33 | color: $gray; 34 | 35 | time { 36 | position: relative; 37 | margin-right: 1.5em; 38 | } 39 | 40 | span[itemprop="author"] { 41 | border-bottom: 1px dotted $light; 42 | } 43 | } 44 | 45 | // Post content 46 | .page-content { 47 | padding-top: 8px; 48 | 49 | iframe { 50 | text-align: center; 51 | } 52 | 53 | figure { 54 | img { 55 | border-radius: 2px; 56 | } 57 | 58 | figcaption { 59 | margin-top: 5px; 60 | font-style: italic; 61 | font-size: $small-font-size; 62 | } 63 | } 64 | 65 | a { 66 | color: $text-link-blue; 67 | text-decoration: none; 68 | &[target="_blank"]::after { 69 | content: " \2197"; 70 | font-size: $small-font-size; 71 | line-height: 0; 72 | position: relative; 73 | bottom: 5px; 74 | vertical-align: baseline; 75 | } 76 | 77 | &:hover { 78 | color: $text-link-blue-active; 79 | } 80 | 81 | &:focus { 82 | color: $text-link-blue; 83 | } 84 | } 85 | 86 | > p { 87 | margin: 0; 88 | padding-top: $spacing-full - 15; 89 | padding-bottom: $spacing-full - 15; 90 | } 91 | 92 | ul.task-list { 93 | list-style: none; 94 | margin: 0; 95 | 96 | li::before { 97 | content: ""; 98 | } 99 | 100 | li input[type="checkbox"] { 101 | margin-right: 10px; 102 | } 103 | } 104 | 105 | dl dt { 106 | font-weight: $bold-weight; 107 | } 108 | 109 | h1, 110 | h2, 111 | h3, 112 | h4, 113 | h5, 114 | h6 { 115 | color: $black; 116 | font-weight: $bold-weight; 117 | margin-top: $spacing-full; 118 | margin-bottom: 0; 119 | letter-spacing: .03rem; 120 | 121 | &:hover { 122 | .anchor-head { 123 | color: $text-link-blue; 124 | opacity: 1; 125 | } 126 | } 127 | 128 | .anchor-head { 129 | position: relative; 130 | opacity: 0; 131 | outline: none; 132 | 133 | &::before { 134 | content: "#"; 135 | position: absolute; 136 | right: -3px; 137 | width: 1em; 138 | font-weight: $bold-weight; 139 | } 140 | } 141 | } 142 | 143 | h1 { 144 | @include relative-font-size(1.5); 145 | } 146 | 147 | h2 { 148 | @include relative-font-size(1.375); 149 | } 150 | 151 | h3 { 152 | @include relative-font-size(1.25); 153 | } 154 | 155 | h4 { 156 | @include relative-font-size(1.25); 157 | } 158 | 159 | h5 { 160 | @include relative-font-size(1); 161 | } 162 | 163 | h6 { 164 | @include relative-font-size(0.875); 165 | } 166 | } 167 | 168 | .post-nav { 169 | display: flex; 170 | position: relative; 171 | margin-top: 5em; 172 | border-top: 1px solid $light; 173 | line-height: 1.4; 174 | 175 | .post-nav-item { 176 | border-bottom: 0; 177 | font-weight: $bold-weight; 178 | padding-bottom: 10px; 179 | 180 | .post-title { 181 | color: $black; 182 | } 183 | 184 | &:hover, 185 | &:focus { 186 | .post-title { 187 | color: $text-link-blue-active; 188 | opacity: 0.9; 189 | } 190 | } 191 | 192 | .nav-arrow { 193 | font-weight: $normal-weight; 194 | font-size: $small-font-size; 195 | color: $gray; 196 | margin-bottom: 3px; 197 | } 198 | 199 | width: 50%; 200 | padding-top: 10px; 201 | text-decoration: none; 202 | box-sizing: border-box; 203 | 204 | &:nth-child(odd) { 205 | padding-left: 0; 206 | padding-right: 20px; 207 | } 208 | 209 | &:nth-child(even) { 210 | text-align: right; 211 | padding-right: 0; 212 | padding-left: 20px; 213 | } 214 | } 215 | 216 | @include media-query($on-mobile) { 217 | display: block; 218 | font-size: $small-font-size; 219 | 220 | .post-nav-item { 221 | display: block; 222 | width: 100%; 223 | } 224 | 225 | .post-nav-item:nth-child(even) { 226 | border-left: 0; 227 | padding-left: 0; 228 | border-top: 1px solid $light; 229 | } 230 | } 231 | } 232 | 233 | .post-updated-at { 234 | font-family: "Ubuntu mono", "monospace"; 235 | } 236 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/assets/sass/_navbar.scss: -------------------------------------------------------------------------------- 1 | // Navbar 2 | .navbar { 3 | height: auto; 4 | max-width: calc(#{$wide-size} - (#{$spacing-full} * 2)); 5 | max-width: -webkit-calc(#{$wide-size} - (#{$spacing-full} * 2)); 6 | position: relative; 7 | margin-right: auto; 8 | margin-left: auto; 9 | border-bottom: 1px solid $light; 10 | padding: .5rem .3rem; 11 | @extend %clearfix; 12 | } 13 | .logo { 14 | float: left; 15 | margin: .5rem 0 0 1rem; 16 | > svg { 17 | opacity: 0.7; 18 | } 19 | &:hover { 20 | > svg { 21 | opacity: 1; 22 | } 23 | } 24 | @include media-query($on-mobile) { 25 | padding-top: .3rem; 26 | 27 | } 28 | } 29 | // Navigation 30 | .menu { 31 | user-select: none; 32 | -ms-user-select: none; 33 | -webkit-user-select: none; 34 | 35 | ul { 36 | margin: 0; 37 | } 38 | 39 | .menu-separator { 40 | margin-right: .7rem; 41 | @include media-query($on-mobile) { 42 | display: none; 43 | } 44 | } 45 | 46 | 47 | a#mode { 48 | -webkit-transform: scale(1, 1); 49 | transform: scale(1, 1); 50 | opacity: 0.7; 51 | z-index: 1; 52 | 53 | &:hover { 54 | cursor: pointer; 55 | opacity: 1; 56 | } 57 | &:active { 58 | -webkit-transform: scale(0.9, 0.9); 59 | transform: scale(0.9, 0.9); 60 | } 61 | .mode-moon { 62 | display: block; 63 | line { 64 | stroke: $black; 65 | fill: none; 66 | } 67 | 68 | circle { 69 | fill: $black; 70 | stroke: $black; 71 | } 72 | } 73 | .mode-sunny { 74 | display: none; 75 | line { 76 | stroke: $dark-white; 77 | fill: none; 78 | } 79 | circle { 80 | fill: none; 81 | stroke: $dark-white; 82 | } 83 | } 84 | } 85 | 86 | .trigger { 87 | float: right; 88 | display: flex; 89 | align-items: center; 90 | } 91 | 92 | .menu-trigger { 93 | display: none; 94 | } 95 | 96 | .menu-icon { 97 | display: none; 98 | } 99 | 100 | li { 101 | display: inline-block; 102 | margin: 0; 103 | padding: 0; 104 | list-style: none; 105 | 106 | @include media-query($on-mobile) { 107 | display: block; 108 | margin: 0; 109 | padding: 0; 110 | list-style: none; 111 | } 112 | } 113 | 114 | .menu-link { 115 | color: $black; 116 | line-height: $base-line-height + 0.4; 117 | text-decoration: none; 118 | padding: .3rem .5rem; 119 | opacity: 0.7; 120 | letter-spacing: 0.015rem; 121 | 122 | &:hover { 123 | opacity: 1; 124 | } 125 | 126 | &:not(:last-child) { 127 | margin-right: 5px; 128 | } 129 | 130 | @include media-query($on-mobile) { 131 | opacity: 0.8; 132 | } 133 | } 134 | 135 | .menu-link.active { 136 | opacity: 1; 137 | font-weight: 600; 138 | } 139 | 140 | @include media-query($on-mobile) { 141 | position: fixed; 142 | top: 0; 143 | left: 0; 144 | right: 0; 145 | z-index: 2; 146 | text-align: center; 147 | height: 50px; 148 | background-color: $white; 149 | border-bottom: 1px solid $light; 150 | 151 | a#mode { 152 | left: 10px; 153 | top: 12px; 154 | } 155 | 156 | .menu-icon { 157 | display: block; 158 | position: absolute; 159 | right: 0; 160 | margin: .7rem .3rem 0 0; 161 | cursor: pointer; 162 | text-align: center; 163 | z-index: 1; 164 | > svg { 165 | opacity: 0.7; 166 | } 167 | &:hover { 168 | > svg { 169 | opacity: 1; 170 | } 171 | } 172 | &:active { 173 | -webkit-transform: scale(0.9, 0.9); 174 | transform: scale(0.9, 0.9); 175 | } 176 | } 177 | 178 | input[type="checkbox"]:not(:checked) ~ .trigger { 179 | clear: both; 180 | visibility: hidden; 181 | } 182 | 183 | input[type="checkbox"]:checked ~ .trigger { 184 | position: fixed; 185 | animation: 0.2s ease-in forwards fadein; 186 | -webkit-animation: 0.2s ease-in forwards fadein; 187 | flex-direction: column; 188 | justify-content: center; 189 | height: 100vh; 190 | width: 100%; 191 | top: 0; 192 | } 193 | 194 | .menu-link { 195 | display: block; 196 | box-sizing: border-box; 197 | font-size: 1.1em; 198 | 199 | &:not(:last-child) { 200 | margin: 0; 201 | padding: 2px 0; 202 | } 203 | } 204 | } 205 | } 206 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/de/posts/markdown-syntax/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Markdown Syntax Guide 3 | date: 2023-02-11 4 | author: Hugo Authors 5 | description: Sample article showcasing basic Markdown syntax and formatting for HTML elements. 6 | --- 7 | 8 | This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. 9 | 10 | 11 | ## Headings 12 | 13 | The following HTML `Test
94 | 95 | 96 | ``` 97 | 98 | ### Code block indented with four spaces 99 | 100 | 101 | 102 | 103 | 104 |Test
108 | 109 | 110 | 111 | ### Code block with Hugo's internal highlight shortcode 112 | 113 | {{< highlight html >}} 114 | 115 | 116 | 117 | 118 |Test
122 | 123 | 124 | {{< /highlight >}} 125 | 126 | ### Inline code 127 | 128 | Use the backtick to refer to a `variable` within a sentence. 129 | 130 | ## List Types 131 | 132 | ### Ordered List 133 | 134 | 1. First item 135 | 2. Second item 136 | 3. Third item 137 | 138 | ### Unordered List 139 | 140 | * List item 141 | * Another item 142 | * And another item 143 | 144 | ### Nested list 145 | 146 | * Fruit 147 | * Apple 148 | * Orange 149 | * Banana 150 | * Dairy 151 | * Milk 152 | * Cheese 153 | 154 | ## Other Elements — abbr, sub, sup, kbd, mark 155 | 156 | GIF is a bitmap image format. 157 | 158 | H2O 159 | 160 | Xn + Yn = Zn 161 | 162 | Press CTRL+ALT+Delete to end the session. 163 | 164 | Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. 165 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/it/posts/markdown-syntax/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Guida Alla Sintassi Markdown 3 | date: 2023-02-11 4 | author: Hugo Authors 5 | description: Sample article showcasing basic Markdown syntax and formatting for HTML elements. 6 | --- 7 | 8 | This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. 9 | 10 | 11 | ## Headings 12 | 13 | The following HTML `Test
94 | 95 | 96 | ``` 97 | 98 | ### Code block indented with four spaces 99 | 100 | 101 | 102 | 103 | 104 |Test
108 | 109 | 110 | 111 | ### Code block with Hugo's internal highlight shortcode 112 | 113 | {{< highlight html >}} 114 | 115 | 116 | 117 | 118 |Test
122 | 123 | 124 | {{< /highlight >}} 125 | 126 | ### Inline code 127 | 128 | Use the backtick to refer to a `variable` within a sentence. 129 | 130 | ## List Types 131 | 132 | ### Ordered List 133 | 134 | 1. First item 135 | 2. Second item 136 | 3. Third item 137 | 138 | ### Unordered List 139 | 140 | * List item 141 | * Another item 142 | * And another item 143 | 144 | ### Nested list 145 | 146 | * Fruit 147 | * Apple 148 | * Orange 149 | * Banana 150 | * Dairy 151 | * Milk 152 | * Cheese 153 | 154 | ## Other Elements — abbr, sub, sup, kbd, mark 155 | 156 | GIF is a bitmap image format. 157 | 158 | H2O 159 | 160 | Xn + Yn = Zn 161 | 162 | Press CTRL+ALT+Delete to end the session. 163 | 164 | Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. 165 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/en/posts/markdown-syntax/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Markdown Syntax Guide 3 | date: 2023-02-11 4 | author: Hugo Authors 5 | description: Sample article showcasing basic Markdown syntax and formatting for HTML elements. 6 | isStarred: true 7 | --- 8 | 9 | This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. 10 | 11 | 12 | ## Headings 13 | 14 | The following HTML `Test
95 | 96 | 97 | ``` 98 | 99 | ### Code block indented with four spaces 100 | 101 | 102 | 103 | 104 | 105 |Test
109 | 110 | 111 | 112 | ### Code block with Hugo's internal highlight shortcode 113 | 114 | {{< highlight html >}} 115 | 116 | 117 | 118 | 119 |Test
123 | 124 | 125 | {{< /highlight >}} 126 | 127 | ### Inline code 128 | 129 | Use the backtick to refer to a `variable` within a sentence. 130 | 131 | ## List Types 132 | 133 | ### Ordered List 134 | 135 | 1. First item 136 | 2. Second item with some `code` in it 137 | 3. Third item 138 | 139 | ### Unordered List 140 | 141 | * List item 142 | * Another item with some `code` in it 143 | * And another item 144 | 145 | ### Nested list 146 | 147 | * Fruit 148 | * Apple 149 | * Orange 150 | * Banana 151 | * Dairy 152 | * Milk 153 | * Cheese 154 | 155 | ## Other Elements — abbr, sub, sup, kbd, mark 156 | 157 | GIF is a bitmap image format. 158 | 159 | H2O 160 | 161 | Xn + Yn = Zn 162 | 163 | Press CTRL+ALT+Delete to end the session. 164 | 165 | Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. 166 | -------------------------------------------------------------------------------- /themes/hugo-blog-awesome/exampleSite/content/ru/posts/markdown-syntax/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Инструкция по использованию Markdown 3 | date: 2023-02-11 4 | author: Hugo Authors 5 | description: Пример статьи, демонстрирующей базовый синтаксис Markdown и форматирование элементов HTML. 6 | --- 7 | 8 | В этой статье предлагается образец базового синтаксиса Markdown, который можно использовать в файлах контента Hugo, а также показано как расширенна разметка базовые элементы HTML CSS в теме Hugo. 9 | 10 | 11 | ## Headings 12 | 13 | Следующий HTML `Test
94 | 95 | 96 | ``` 97 | 98 | ### Блок кода с отступом в четыре пробела 99 | 100 | 101 | 102 | 103 | 104 |Test
108 | 109 | 110 | 111 | ### Блок кода с коротким кодом внутренней подсветки Hugo 112 | 113 | {{< highlight html >}} 114 | 115 | 116 | 117 | 118 |Test
122 | 123 | 124 | {{< /highlight >}} 125 | 126 | ### Встроенный код 127 | 128 | Используйте обратные кавычки для отсылки к `variable` в пределах предложения. 129 | 130 | ## Списки 131 | 132 | ### Упорядоченный список 133 | 134 | 1. First item 135 | 2. Second item 136 | 3. Third item 137 | 138 | ### Неупорядоченный список 139 | 140 | * List item 141 | * Another item 142 | * And another item 143 | 144 | ### Вложенные списки 145 | 146 | * Fruit 147 | * Apple 148 | * Orange 149 | * Banana 150 | * Dairy 151 | * Milk 152 | * Cheese 153 | 154 | ## Остальные элементы — abbr, sub, sup, kbd, mark 155 | 156 | GIF bitmap формат изображений. 157 | 158 | H2O 159 | 160 | Xn + Yn = Zn 161 | 162 | Нажмите CTRL+ALT+Delete для завершения сессии. 163 | 164 | Большинство саламандр ведут ночной образ жизни и охотятся на насекомых, червей и других мелких существ. 165 | -------------------------------------------------------------------------------- /content/posts/popit.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "팝잇 게임" 3 | date: "2025-06-15" 4 | author: "chei" 5 | --- 6 | 7 | 8 | 9 | 10 |점수: 0
56 |Teste
95 | 96 | 97 | ``` 98 | 99 | ### Blocos de Código identado com quatro espaço 100 | 101 | 102 | 103 | 104 | 105 |Teste
109 | 110 | 111 | 112 | ### Bloco de código com o shortcode de destaque interno do Hugo 113 | 114 | {{< highlight html >}} 115 | 116 | 117 | 118 | 119 |Teste
123 | 124 | 125 | {{< /highlight >}} 126 | 127 | ### Código em Linha 128 | 129 | Use a crase para se referir a uma `variável` dentro de uma frase. 130 | 131 | ## Tipos de Lista 132 | 133 | ### Lista Ordenada 134 | 135 | 1. Primeiro Item 136 | 2. Segundo Item com algum `codigo` dentro 137 | 3. Terceiro Item 138 | 139 | ### Lista não Ordenada 140 | 141 | * Item delista 142 | * Outro Item com algum `codigo` dentro 143 | * E outro Item 144 | 145 | ### Lista em cascata 146 | 147 | * Frutas 148 | * Maça 149 | * Laranja 150 | * Banana 151 | * Laticínios 152 | * Leite 153 | * Queijo 154 | 155 | ## Outros Elementos — abbr, sub, sup, kbd, mark 156 | 157 | GIF é um arquivo de formato bitmap. 158 | 159 | H2O 160 | 161 | Xn + Yn = Zn 162 | 163 | Pressione CTRL+ALT+Delete para terminar uma sessão. 164 | 165 | A maioria das salamandras é noturna e caça insetos, vermes e outras pequenas criaturas. 166 | --------------------------------------------------------------------------------