├── src ├── js │ ├── sidebar.js │ ├── wild.js │ ├── file_template.js │ ├── loader.js │ ├── css_template.js │ ├── helpers.js │ └── main.js ├── images │ ├── pp.jpg │ └── logo.svg ├── css │ ├── var.less │ ├── var.scss │ ├── main.less │ ├── main.scss │ ├── wild.less │ ├── wild.scss │ ├── media_query.less │ ├── media_query.scss │ ├── light.less │ ├── light.scss │ ├── dark.less │ ├── dark.scss │ ├── icon.less │ ├── icon.scss │ ├── base.less │ └── base.scss └── index.js ├── images ├── tn.png ├── dark.png ├── export.png ├── wild_mode.png ├── screenshot.png ├── wild_mode2.png └── wild_mode3.png ├── exampleSite ├── static │ └── images │ │ ├── favicon.ico │ │ ├── logo.svg │ │ └── logo_light.svg ├── content │ └── posts │ │ ├── hello-world.md │ │ └── The standard Lorem Ipsum passage, used since the 1500s.md └── config.toml ├── .gitignore ├── archetypes └── default.md ├── i18n ├── zh.yaml └── en.yaml ├── layouts ├── partials │ ├── loader.html │ ├── sidebar_posts.html │ ├── sidebar_tags.html │ ├── sidebar_categories.html │ ├── terms_list.html │ ├── js.html │ ├── sidebar_taxonomies.html │ ├── pagination.html │ ├── list.html │ ├── logo.html │ ├── comment.html │ ├── intro.html │ ├── header.html │ ├── post.html │ ├── head.html │ └── footer.html ├── _default │ ├── single.html │ ├── list.html │ └── terms.html ├── index.html └── 404.html ├── theme.toml ├── LICENSE ├── package.json ├── webpack.config.js ├── README-zh.md ├── README.md └── static └── css └── main.css /src/js/sidebar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/wild.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/images/dark.png -------------------------------------------------------------------------------- /images/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/images/export.png -------------------------------------------------------------------------------- /src/images/pp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/src/images/pp.jpg -------------------------------------------------------------------------------- /images/wild_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/images/wild_mode.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/wild_mode2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/images/wild_mode2.png -------------------------------------------------------------------------------- /images/wild_mode3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/images/wild_mode3.png -------------------------------------------------------------------------------- /src/css/var.less: -------------------------------------------------------------------------------- 1 | @light_main_bg: #FFF; 2 | @dark_main_bg: #282C34; 3 | @light_header_bg: #DDD; 4 | -------------------------------------------------------------------------------- /src/css/var.scss: -------------------------------------------------------------------------------- 1 | $light_main_bg: #FFF; 2 | $dark_main_bg: #282C34; 3 | $light_header_bg: #DDD; 4 | -------------------------------------------------------------------------------- /exampleSite/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfengyuan/edidor/HEAD/exampleSite/static/images/favicon.ico -------------------------------------------------------------------------------- /src/css/main.less: -------------------------------------------------------------------------------- 1 | @import 'var'; 2 | @import 'base'; 3 | @import 'dark'; 4 | @import 'light'; 5 | @import 'wild'; 6 | @import 'icon'; 7 | -------------------------------------------------------------------------------- /src/css/main.scss: -------------------------------------------------------------------------------- 1 | @import 'var'; 2 | @import 'base'; 3 | @import 'dark'; 4 | @import 'light'; 5 | @import 'wild'; 6 | @import 'icon'; 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Hugo default output directory 2 | /public 3 | node_modules 4 | ## OS Files 5 | # Windows 6 | Thumbs.db 7 | Desktop.ini 8 | $RECYCLE.BIN/ 9 | 10 | # OSX 11 | .DS_Store 12 | *.map 13 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | tags: [] 4 | categories: [] 5 | date: {{ .Date }} 6 | hidden: false 7 | draft: true 8 | keywords: [] 9 | description: "" 10 | slug: "" 11 | --- 12 | -------------------------------------------------------------------------------- /i18n/zh.yaml: -------------------------------------------------------------------------------- 1 | prev_page: 2 | other: "最新" 3 | 4 | next_page: 5 | other: "更早" 6 | 7 | home: 8 | other: "首页" 9 | 10 | archive: 11 | other: "归档" 12 | 13 | tags: 14 | other: "标签" 15 | 16 | about: 17 | other: "关于" 18 | -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- 1 | prev_page: 2 | other: "Prev" 3 | 4 | next_page: 5 | other: "Next" 6 | 7 | home: 8 | other: "Home" 9 | 10 | archive: 11 | other: "Archive" 12 | 13 | tags: 14 | other: "Tags" 15 | 16 | about: 17 | other: "About" 18 | -------------------------------------------------------------------------------- /layouts/partials/loader.html: -------------------------------------------------------------------------------- 1 | 2 |