├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yaml └── workflows │ └── docs.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── archetypes ├── about.md ├── posts.md └── posts │ └── index.md ├── assets ├── css │ └── output.css ├── images │ ├── default1.jpg │ ├── default2.jpg │ ├── default3.jpg │ └── default4.jpg └── js │ ├── grid.js │ ├── main.js │ └── toc.js ├── config.toml ├── decapCMS ├── config.yml └── index.html ├── docs ├── app │ ├── AdSense.jsx │ ├── [[...mdxPath]] │ │ └── page.jsx │ └── layout.jsx ├── content │ ├── CHANGELOG.md │ ├── _meta.js │ ├── about-page.md │ ├── adsense.mdx │ ├── archives-page.md │ ├── base-configurations.mdx │ ├── custom-nav-items.mdx │ ├── custom.mdx │ ├── decap-cms.md │ ├── i18n.md │ ├── index.mdx │ ├── light-and-dark-mode.mdx │ ├── migrate-to-v3.mdx │ ├── params-configurations.mdx │ ├── post-page.mdx │ ├── search.md │ ├── social-comments.mdx │ ├── social-links.mdx │ ├── summary-images.mdx │ ├── syntax-highlighting.mdx │ ├── website-analytics.mdx │ └── zen-mode.mdx ├── mdx-components.jsx ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml └── public │ ├── .nojekyll │ └── images │ └── zen-mode.png ├── hugo.example.toml ├── i18n ├── ar.toml ├── bn.toml ├── ca.toml ├── de.toml ├── en.toml ├── es.toml ├── fr.toml ├── he.toml ├── it.toml ├── ja.toml ├── lv.toml ├── pt.toml ├── ro.toml ├── ru.toml ├── sl.toml ├── tr.toml ├── vi.toml └── zh.toml ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ ├── render-blockquote.html │ │ ├── render-codeblock-math.html │ │ ├── render-codeblock-mermaid.html │ │ └── render-link.html │ ├── baseof.html │ ├── single.html │ ├── summary.html │ ├── term.html │ ├── terms.html │ └── zen-summary.html ├── index.html ├── partials │ ├── author.html │ ├── back.html │ ├── commentSystemHeads.html │ ├── commentSystems.html │ ├── disqus.html │ ├── footer.html │ ├── footerLeft.html │ ├── footerRight.html │ ├── head.html │ ├── luxon.html │ ├── mathjax.html │ ├── nav.html │ ├── navCustomItems.html │ ├── navMobileMenu.html │ ├── paginator.html │ ├── renderMobileNavItem.html │ ├── renderNavItem.html │ ├── scripts.html │ ├── share.html │ ├── socials.html │ └── zen-back.html └── section │ ├── posts.html │ └── search.html ├── package.json ├── pnpm-lock.yaml ├── src ├── input.css └── js │ ├── grid.js │ ├── main.js │ └── toc.js ├── tailwind.config.js └── theme.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/archetypes/about.md -------------------------------------------------------------------------------- /archetypes/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/archetypes/posts.md -------------------------------------------------------------------------------- /archetypes/posts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/archetypes/posts/index.md -------------------------------------------------------------------------------- /assets/css/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/assets/css/output.css -------------------------------------------------------------------------------- /assets/images/default1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/assets/images/default1.jpg -------------------------------------------------------------------------------- /assets/images/default2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/assets/images/default2.jpg -------------------------------------------------------------------------------- /assets/images/default3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/assets/images/default3.jpg -------------------------------------------------------------------------------- /assets/images/default4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/assets/images/default4.jpg -------------------------------------------------------------------------------- /assets/js/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/assets/js/grid.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/assets/js/toc.js -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/config.toml -------------------------------------------------------------------------------- /decapCMS/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/decapCMS/config.yml -------------------------------------------------------------------------------- /decapCMS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/decapCMS/index.html -------------------------------------------------------------------------------- /docs/app/AdSense.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/app/AdSense.jsx -------------------------------------------------------------------------------- /docs/app/[[...mdxPath]]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/app/[[...mdxPath]]/page.jsx -------------------------------------------------------------------------------- /docs/app/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/app/layout.jsx -------------------------------------------------------------------------------- /docs/content/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/CHANGELOG.md -------------------------------------------------------------------------------- /docs/content/_meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/_meta.js -------------------------------------------------------------------------------- /docs/content/about-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/about-page.md -------------------------------------------------------------------------------- /docs/content/adsense.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/adsense.mdx -------------------------------------------------------------------------------- /docs/content/archives-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/archives-page.md -------------------------------------------------------------------------------- /docs/content/base-configurations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/base-configurations.mdx -------------------------------------------------------------------------------- /docs/content/custom-nav-items.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/custom-nav-items.mdx -------------------------------------------------------------------------------- /docs/content/custom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/custom.mdx -------------------------------------------------------------------------------- /docs/content/decap-cms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/decap-cms.md -------------------------------------------------------------------------------- /docs/content/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/i18n.md -------------------------------------------------------------------------------- /docs/content/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/index.mdx -------------------------------------------------------------------------------- /docs/content/light-and-dark-mode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/light-and-dark-mode.mdx -------------------------------------------------------------------------------- /docs/content/migrate-to-v3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/migrate-to-v3.mdx -------------------------------------------------------------------------------- /docs/content/params-configurations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/params-configurations.mdx -------------------------------------------------------------------------------- /docs/content/post-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/post-page.mdx -------------------------------------------------------------------------------- /docs/content/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/search.md -------------------------------------------------------------------------------- /docs/content/social-comments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/social-comments.mdx -------------------------------------------------------------------------------- /docs/content/social-links.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/social-links.mdx -------------------------------------------------------------------------------- /docs/content/summary-images.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/summary-images.mdx -------------------------------------------------------------------------------- /docs/content/syntax-highlighting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/syntax-highlighting.mdx -------------------------------------------------------------------------------- /docs/content/website-analytics.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/website-analytics.mdx -------------------------------------------------------------------------------- /docs/content/zen-mode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/content/zen-mode.mdx -------------------------------------------------------------------------------- /docs/mdx-components.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/mdx-components.jsx -------------------------------------------------------------------------------- /docs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/next.config.mjs -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/public/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/public/images/zen-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/docs/public/images/zen-mode.png -------------------------------------------------------------------------------- /hugo.example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/hugo.example.toml -------------------------------------------------------------------------------- /i18n/ar.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/ar.toml -------------------------------------------------------------------------------- /i18n/bn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/bn.toml -------------------------------------------------------------------------------- /i18n/ca.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/ca.toml -------------------------------------------------------------------------------- /i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/de.toml -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/en.toml -------------------------------------------------------------------------------- /i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/es.toml -------------------------------------------------------------------------------- /i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/fr.toml -------------------------------------------------------------------------------- /i18n/he.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/he.toml -------------------------------------------------------------------------------- /i18n/it.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/it.toml -------------------------------------------------------------------------------- /i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/ja.toml -------------------------------------------------------------------------------- /i18n/lv.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/lv.toml -------------------------------------------------------------------------------- /i18n/pt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/pt.toml -------------------------------------------------------------------------------- /i18n/ro.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/ro.toml -------------------------------------------------------------------------------- /i18n/ru.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/ru.toml -------------------------------------------------------------------------------- /i18n/sl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/sl.toml -------------------------------------------------------------------------------- /i18n/tr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/tr.toml -------------------------------------------------------------------------------- /i18n/vi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/vi.toml -------------------------------------------------------------------------------- /i18n/zh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/i18n/zh.toml -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/_markup/render-blockquote.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-codeblock-math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/_markup/render-codeblock-math.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-codeblock-mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/_markup/render-codeblock-mermaid.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/summary.html -------------------------------------------------------------------------------- /layouts/_default/term.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/term.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/_default/zen-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/_default/zen-summary.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/author.html -------------------------------------------------------------------------------- /layouts/partials/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/back.html -------------------------------------------------------------------------------- /layouts/partials/commentSystemHeads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/commentSystemHeads.html -------------------------------------------------------------------------------- /layouts/partials/commentSystems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/commentSystems.html -------------------------------------------------------------------------------- /layouts/partials/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/disqus.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/footerLeft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/footerLeft.html -------------------------------------------------------------------------------- /layouts/partials/footerRight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/footerRight.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/luxon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/luxon.html -------------------------------------------------------------------------------- /layouts/partials/mathjax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/mathjax.html -------------------------------------------------------------------------------- /layouts/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/nav.html -------------------------------------------------------------------------------- /layouts/partials/navCustomItems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/navCustomItems.html -------------------------------------------------------------------------------- /layouts/partials/navMobileMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/navMobileMenu.html -------------------------------------------------------------------------------- /layouts/partials/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/paginator.html -------------------------------------------------------------------------------- /layouts/partials/renderMobileNavItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/renderMobileNavItem.html -------------------------------------------------------------------------------- /layouts/partials/renderNavItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/renderNavItem.html -------------------------------------------------------------------------------- /layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/scripts.html -------------------------------------------------------------------------------- /layouts/partials/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/share.html -------------------------------------------------------------------------------- /layouts/partials/socials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/socials.html -------------------------------------------------------------------------------- /layouts/partials/zen-back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/partials/zen-back.html -------------------------------------------------------------------------------- /layouts/section/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/section/posts.html -------------------------------------------------------------------------------- /layouts/section/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/layouts/section/search.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/src/input.css -------------------------------------------------------------------------------- /src/js/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/src/js/grid.js -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/src/js/toc.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1eny0ung/hugo-theme-dream/HEAD/theme.toml --------------------------------------------------------------------------------