├── .env.example ├── .github ├── .release-please-manifest.json ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ ├── documentation.yaml │ └── feature_request.yaml ├── assets │ ├── preview-dark.webp │ └── preview-light.webp ├── pull_request_template.md ├── release-please-config.json └── workflows │ ├── quality.yaml │ └── release.yaml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .prettierrc ├── .vscode ├── extensions.json ├── i18n-ally-custom-framework.yml ├── launch.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.ja.md ├── README.md ├── README.zh-cn.md ├── astro.config.ts ├── biome.json ├── env.d.ts ├── index.d.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── public ├── favicon-96x96.png ├── favicon.ico ├── favicon.svg ├── feed.css └── linkback.webp ├── scripts └── new.ts ├── site.config.ts ├── src ├── components │ ├── Heatmap.svelte │ ├── Icon.svelte │ ├── Jotting.svelte │ ├── Linkroll.astro │ ├── Modal.svelte │ ├── Note.svelte │ ├── Position.astro │ ├── Sensitive.svelte │ ├── TOC.astro │ └── Tip.svelte ├── content.config.ts ├── content │ ├── information │ │ ├── en │ │ │ ├── chronicle.yaml │ │ │ ├── introduction.md │ │ │ ├── linkroll.mdx │ │ │ └── policy.md │ │ ├── ja │ │ │ ├── chronicle.yaml │ │ │ ├── introduction.md │ │ │ ├── linkroll.mdx │ │ │ └── policy.md │ │ └── zh-cn │ │ │ ├── chronicle.yaml │ │ │ ├── introduction.md │ │ │ ├── linkroll.mdx │ │ │ └── policy.md │ ├── jotting │ │ ├── en │ │ │ ├── kong-yiji.md │ │ │ ├── markdown.md │ │ │ └── udhr.md │ │ ├── ja │ │ │ ├── kong-yiji.md │ │ │ ├── markdown.md │ │ │ └── udhr.md │ │ └── zh-cn │ │ │ ├── kong-yiji.md │ │ │ ├── markdown.md │ │ │ └── udhr.md │ ├── note │ │ ├── en │ │ │ ├── configuration.md │ │ │ ├── content.md │ │ │ ├── image-preview │ │ │ │ ├── index.md │ │ │ │ └── white_sailboat_on_water.jpg │ │ │ ├── internationalization.md │ │ │ ├── linkroll.md │ │ │ └── sensitive │ │ │ │ ├── index.md │ │ │ │ └── pid_73284156_0.png │ │ ├── ja │ │ │ ├── configuration.md │ │ │ ├── content.md │ │ │ ├── image-preview │ │ │ │ ├── index.md │ │ │ │ └── white_sailboat_on_water.jpg │ │ │ ├── internationalization.md │ │ │ ├── linkroll.md │ │ │ └── sensitive │ │ │ │ ├── index.md │ │ │ │ └── pid_73284156_0.png │ │ └── zh-cn │ │ │ ├── configuration.md │ │ │ ├── content.md │ │ │ ├── image-preview │ │ │ ├── index.md │ │ │ └── white_sailboat_on_water.jpg │ │ │ ├── internationalization.md │ │ │ ├── linkroll.md │ │ │ └── sensitive │ │ │ ├── index.md │ │ │ └── pid_73284156_0.png │ └── preface │ │ ├── en │ │ ├── 1996-04-06-00-00-00.md │ │ └── 2025-04-03-13-30-21.md │ │ ├── ja │ │ ├── 1996-04-06-00-00-00.md │ │ └── 2025-04-30-12-42-24.md │ │ └── zh-cn │ │ ├── 1996-04-06-00-00-00.md │ │ └── 2025-04-13-04-26-40.md ├── graph │ ├── content.ts │ └── default.ts ├── i18n │ ├── en │ │ ├── index.yaml │ │ ├── linkroll.yaml │ │ └── script.yaml │ ├── index.ts │ ├── ja │ │ ├── index.yaml │ │ ├── linkroll.yaml │ │ └── script.yaml │ └── zh-cn │ │ ├── index.yaml │ │ ├── linkroll.yaml │ │ └── script.yaml ├── icons │ └── site-logo.svg ├── layouts │ ├── App.astro │ ├── Base.astro │ ├── Footer.astro │ └── header │ │ ├── Menu.svelte │ │ ├── Navigator.svelte │ │ └── ThemeSwitcher.svelte ├── pages │ ├── 404.astro │ ├── 500.astro │ ├── [...locale] │ │ ├── about.astro │ │ ├── feed.xml.ts │ │ ├── feed.xsl.ts │ │ ├── index.astro │ │ ├── jotting │ │ │ ├── [...id] │ │ │ │ ├── graph.png.ts │ │ │ │ └── index.astro │ │ │ └── index.astro │ │ ├── note │ │ │ ├── [...id] │ │ │ │ ├── graph.png.ts │ │ │ │ └── index.astro │ │ │ └── index.astro │ │ ├── policy.astro │ │ └── preface.astro │ ├── graph.png.ts │ └── robots.txt.ts ├── styles │ ├── global.css │ ├── markdown.css │ └── tailwind.css └── utils │ ├── code-copy.ts │ ├── config.ts │ ├── remark │ ├── abbr.ts │ ├── attr.ts │ ├── figure.ts │ ├── reading.ts │ ├── spoiler.ts │ └── table-wrapper.ts │ └── time.ts ├── svelte.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | # Basic configuration 2 | PUBLIC_TIMEZONE= -------------------------------------------------------------------------------- /.github/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.30.7" 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/ISSUE_TEMPLATE/documentation.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/assets/preview-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/assets/preview-dark.webp -------------------------------------------------------------------------------- /.github/assets/preview-light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/assets/preview-light.webp -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/release-please-config.json -------------------------------------------------------------------------------- /.github/workflows/quality.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/workflows/quality.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | lint-staged -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/i18n-ally-custom-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.vscode/i18n-ally-custom-framework.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/astro.config.ts -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/biome.json -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/env.d.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/feed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/public/feed.css -------------------------------------------------------------------------------- /public/linkback.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/public/linkback.webp -------------------------------------------------------------------------------- /scripts/new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/scripts/new.ts -------------------------------------------------------------------------------- /site.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/site.config.ts -------------------------------------------------------------------------------- /src/components/Heatmap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Heatmap.svelte -------------------------------------------------------------------------------- /src/components/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Icon.svelte -------------------------------------------------------------------------------- /src/components/Jotting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Jotting.svelte -------------------------------------------------------------------------------- /src/components/Linkroll.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Linkroll.astro -------------------------------------------------------------------------------- /src/components/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Modal.svelte -------------------------------------------------------------------------------- /src/components/Note.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Note.svelte -------------------------------------------------------------------------------- /src/components/Position.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Position.astro -------------------------------------------------------------------------------- /src/components/Sensitive.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Sensitive.svelte -------------------------------------------------------------------------------- /src/components/TOC.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/TOC.astro -------------------------------------------------------------------------------- /src/components/Tip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/components/Tip.svelte -------------------------------------------------------------------------------- /src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content.config.ts -------------------------------------------------------------------------------- /src/content/information/en/chronicle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/en/chronicle.yaml -------------------------------------------------------------------------------- /src/content/information/en/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/en/introduction.md -------------------------------------------------------------------------------- /src/content/information/en/linkroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/en/linkroll.mdx -------------------------------------------------------------------------------- /src/content/information/en/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/en/policy.md -------------------------------------------------------------------------------- /src/content/information/ja/chronicle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/ja/chronicle.yaml -------------------------------------------------------------------------------- /src/content/information/ja/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/ja/introduction.md -------------------------------------------------------------------------------- /src/content/information/ja/linkroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/ja/linkroll.mdx -------------------------------------------------------------------------------- /src/content/information/ja/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/ja/policy.md -------------------------------------------------------------------------------- /src/content/information/zh-cn/chronicle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/zh-cn/chronicle.yaml -------------------------------------------------------------------------------- /src/content/information/zh-cn/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/zh-cn/introduction.md -------------------------------------------------------------------------------- /src/content/information/zh-cn/linkroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/zh-cn/linkroll.mdx -------------------------------------------------------------------------------- /src/content/information/zh-cn/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/information/zh-cn/policy.md -------------------------------------------------------------------------------- /src/content/jotting/en/kong-yiji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/en/kong-yiji.md -------------------------------------------------------------------------------- /src/content/jotting/en/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/en/markdown.md -------------------------------------------------------------------------------- /src/content/jotting/en/udhr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/en/udhr.md -------------------------------------------------------------------------------- /src/content/jotting/ja/kong-yiji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/ja/kong-yiji.md -------------------------------------------------------------------------------- /src/content/jotting/ja/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/ja/markdown.md -------------------------------------------------------------------------------- /src/content/jotting/ja/udhr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/ja/udhr.md -------------------------------------------------------------------------------- /src/content/jotting/zh-cn/kong-yiji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/zh-cn/kong-yiji.md -------------------------------------------------------------------------------- /src/content/jotting/zh-cn/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/zh-cn/markdown.md -------------------------------------------------------------------------------- /src/content/jotting/zh-cn/udhr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/jotting/zh-cn/udhr.md -------------------------------------------------------------------------------- /src/content/note/en/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/en/configuration.md -------------------------------------------------------------------------------- /src/content/note/en/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/en/content.md -------------------------------------------------------------------------------- /src/content/note/en/image-preview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/en/image-preview/index.md -------------------------------------------------------------------------------- /src/content/note/en/image-preview/white_sailboat_on_water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/en/image-preview/white_sailboat_on_water.jpg -------------------------------------------------------------------------------- /src/content/note/en/internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/en/internationalization.md -------------------------------------------------------------------------------- /src/content/note/en/linkroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/en/linkroll.md -------------------------------------------------------------------------------- /src/content/note/en/sensitive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/en/sensitive/index.md -------------------------------------------------------------------------------- /src/content/note/en/sensitive/pid_73284156_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/en/sensitive/pid_73284156_0.png -------------------------------------------------------------------------------- /src/content/note/ja/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/ja/configuration.md -------------------------------------------------------------------------------- /src/content/note/ja/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/ja/content.md -------------------------------------------------------------------------------- /src/content/note/ja/image-preview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/ja/image-preview/index.md -------------------------------------------------------------------------------- /src/content/note/ja/image-preview/white_sailboat_on_water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/ja/image-preview/white_sailboat_on_water.jpg -------------------------------------------------------------------------------- /src/content/note/ja/internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/ja/internationalization.md -------------------------------------------------------------------------------- /src/content/note/ja/linkroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/ja/linkroll.md -------------------------------------------------------------------------------- /src/content/note/ja/sensitive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/ja/sensitive/index.md -------------------------------------------------------------------------------- /src/content/note/ja/sensitive/pid_73284156_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/ja/sensitive/pid_73284156_0.png -------------------------------------------------------------------------------- /src/content/note/zh-cn/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/zh-cn/configuration.md -------------------------------------------------------------------------------- /src/content/note/zh-cn/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/zh-cn/content.md -------------------------------------------------------------------------------- /src/content/note/zh-cn/image-preview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/zh-cn/image-preview/index.md -------------------------------------------------------------------------------- /src/content/note/zh-cn/image-preview/white_sailboat_on_water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/zh-cn/image-preview/white_sailboat_on_water.jpg -------------------------------------------------------------------------------- /src/content/note/zh-cn/internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/zh-cn/internationalization.md -------------------------------------------------------------------------------- /src/content/note/zh-cn/linkroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/zh-cn/linkroll.md -------------------------------------------------------------------------------- /src/content/note/zh-cn/sensitive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/zh-cn/sensitive/index.md -------------------------------------------------------------------------------- /src/content/note/zh-cn/sensitive/pid_73284156_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/note/zh-cn/sensitive/pid_73284156_0.png -------------------------------------------------------------------------------- /src/content/preface/en/1996-04-06-00-00-00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/preface/en/1996-04-06-00-00-00.md -------------------------------------------------------------------------------- /src/content/preface/en/2025-04-03-13-30-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/preface/en/2025-04-03-13-30-21.md -------------------------------------------------------------------------------- /src/content/preface/ja/1996-04-06-00-00-00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/preface/ja/1996-04-06-00-00-00.md -------------------------------------------------------------------------------- /src/content/preface/ja/2025-04-30-12-42-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/preface/ja/2025-04-30-12-42-24.md -------------------------------------------------------------------------------- /src/content/preface/zh-cn/1996-04-06-00-00-00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/preface/zh-cn/1996-04-06-00-00-00.md -------------------------------------------------------------------------------- /src/content/preface/zh-cn/2025-04-13-04-26-40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/content/preface/zh-cn/2025-04-13-04-26-40.md -------------------------------------------------------------------------------- /src/graph/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/graph/content.ts -------------------------------------------------------------------------------- /src/graph/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/graph/default.ts -------------------------------------------------------------------------------- /src/i18n/en/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/en/index.yaml -------------------------------------------------------------------------------- /src/i18n/en/linkroll.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/en/linkroll.yaml -------------------------------------------------------------------------------- /src/i18n/en/script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/en/script.yaml -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/ja/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/ja/index.yaml -------------------------------------------------------------------------------- /src/i18n/ja/linkroll.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/ja/linkroll.yaml -------------------------------------------------------------------------------- /src/i18n/ja/script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/ja/script.yaml -------------------------------------------------------------------------------- /src/i18n/zh-cn/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/zh-cn/index.yaml -------------------------------------------------------------------------------- /src/i18n/zh-cn/linkroll.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/zh-cn/linkroll.yaml -------------------------------------------------------------------------------- /src/i18n/zh-cn/script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/i18n/zh-cn/script.yaml -------------------------------------------------------------------------------- /src/icons/site-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/icons/site-logo.svg -------------------------------------------------------------------------------- /src/layouts/App.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/layouts/App.astro -------------------------------------------------------------------------------- /src/layouts/Base.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/layouts/Base.astro -------------------------------------------------------------------------------- /src/layouts/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/layouts/Footer.astro -------------------------------------------------------------------------------- /src/layouts/header/Menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/layouts/header/Menu.svelte -------------------------------------------------------------------------------- /src/layouts/header/Navigator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/layouts/header/Navigator.svelte -------------------------------------------------------------------------------- /src/layouts/header/ThemeSwitcher.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/layouts/header/ThemeSwitcher.svelte -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/500.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/500.astro -------------------------------------------------------------------------------- /src/pages/[...locale]/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/about.astro -------------------------------------------------------------------------------- /src/pages/[...locale]/feed.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/feed.xml.ts -------------------------------------------------------------------------------- /src/pages/[...locale]/feed.xsl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/feed.xsl.ts -------------------------------------------------------------------------------- /src/pages/[...locale]/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/index.astro -------------------------------------------------------------------------------- /src/pages/[...locale]/jotting/[...id]/graph.png.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/jotting/[...id]/graph.png.ts -------------------------------------------------------------------------------- /src/pages/[...locale]/jotting/[...id]/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/jotting/[...id]/index.astro -------------------------------------------------------------------------------- /src/pages/[...locale]/jotting/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/jotting/index.astro -------------------------------------------------------------------------------- /src/pages/[...locale]/note/[...id]/graph.png.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/note/[...id]/graph.png.ts -------------------------------------------------------------------------------- /src/pages/[...locale]/note/[...id]/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/note/[...id]/index.astro -------------------------------------------------------------------------------- /src/pages/[...locale]/note/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/note/index.astro -------------------------------------------------------------------------------- /src/pages/[...locale]/policy.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/policy.astro -------------------------------------------------------------------------------- /src/pages/[...locale]/preface.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/[...locale]/preface.astro -------------------------------------------------------------------------------- /src/pages/graph.png.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/graph.png.ts -------------------------------------------------------------------------------- /src/pages/robots.txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/pages/robots.txt.ts -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/styles/markdown.css -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /src/utils/code-copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/code-copy.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/remark/abbr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/remark/abbr.ts -------------------------------------------------------------------------------- /src/utils/remark/attr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/remark/attr.ts -------------------------------------------------------------------------------- /src/utils/remark/figure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/remark/figure.ts -------------------------------------------------------------------------------- /src/utils/remark/reading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/remark/reading.ts -------------------------------------------------------------------------------- /src/utils/remark/spoiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/remark/spoiler.ts -------------------------------------------------------------------------------- /src/utils/remark/table-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/remark/table-wrapper.ts -------------------------------------------------------------------------------- /src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/src/utils/time.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuyuritio/astro-theme-thought-lite/HEAD/tsconfig.json --------------------------------------------------------------------------------