├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets └── css │ ├── main.css │ ├── postcss.config.js │ ├── style.css │ └── tailwind.config.js ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── list.html │ ├── single.html │ └── single.md ├── index.html ├── index.rss.xml ├── partials │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── post.html │ ├── posts │ │ ├── comments.html │ │ ├── copyright.html │ │ ├── popular.html │ │ ├── profile.html │ │ ├── related.html │ │ ├── reward.html │ │ ├── title.html │ │ └── toc.html │ ├── scripts.html │ └── seo.html └── robots.txt ├── package.json ├── sitemap.xml └── theme.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/css/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/assets/css/postcss.config.js -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/css/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/assets/css/tailwind.config.js -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/single.md: -------------------------------------------------------------------------------- 1 | {{ .RawContent }} -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/index.rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/index.rss.xml -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/post.html -------------------------------------------------------------------------------- /layouts/partials/posts/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/posts/comments.html -------------------------------------------------------------------------------- /layouts/partials/posts/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/posts/copyright.html -------------------------------------------------------------------------------- /layouts/partials/posts/popular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/posts/popular.html -------------------------------------------------------------------------------- /layouts/partials/posts/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/posts/profile.html -------------------------------------------------------------------------------- /layouts/partials/posts/related.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/posts/related.html -------------------------------------------------------------------------------- /layouts/partials/posts/reward.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/posts/reward.html -------------------------------------------------------------------------------- /layouts/partials/posts/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/posts/title.html -------------------------------------------------------------------------------- /layouts/partials/posts/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/posts/toc.html -------------------------------------------------------------------------------- /layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/scripts.html -------------------------------------------------------------------------------- /layouts/partials/seo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/partials/seo.html -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/layouts/robots.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/package.json -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/sitemap.xml -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecho/hugo-theme-echo/HEAD/theme.toml --------------------------------------------------------------------------------