├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml.example ├── languages ├── ca.yml ├── en.yml ├── es.yml ├── fr.yml ├── hu.yml ├── id.yml ├── ja.yml ├── ko.yml ├── pt-BR.yml ├── ru.yml ├── tr.yml ├── vi.yml ├── zh-CN.yml └── zh-TW.yml ├── layout ├── archive.ejs ├── author.ejs ├── authors.ejs ├── categories.ejs ├── category.ejs ├── comment │ ├── changyan.ejs │ ├── counter.ejs │ ├── disqus.ejs │ ├── duoshuo.ejs │ ├── facebook.ejs │ ├── gitalk.ejs │ ├── index.ejs │ ├── isso.ejs │ ├── livere.ejs │ ├── scripts.ejs │ ├── valine.ejs │ └── youyan.ejs ├── common │ ├── archive.ejs │ ├── article.ejs │ ├── authors.ejs │ ├── categories.ejs │ ├── content-title.ejs │ ├── footer.ejs │ ├── head.ejs │ ├── header.ejs │ ├── post │ │ ├── author.ejs │ │ ├── counter.ejs │ │ ├── date.ejs │ │ ├── gallery.ejs │ │ ├── ld_json.ejs │ │ ├── nav.ejs │ │ ├── tag.ejs │ │ ├── title.ejs │ │ └── valinecounter.ejs │ ├── scripts.ejs │ ├── sidebar.ejs │ ├── summary.ejs │ ├── tags.ejs │ └── thumbnail.ejs ├── index.ejs ├── layout.ejs ├── page.ejs ├── plugin │ ├── baidu-analytics.ejs │ ├── cookie-consent.ejs │ ├── google-adsense.ejs │ ├── google-analytics.ejs │ ├── scripts.ejs │ ├── statcounter.ejs │ └── twitter-conversion.ejs ├── post.ejs ├── pwa │ └── index.ejs ├── search │ ├── baidu.ejs │ ├── index.ejs │ ├── insight.ejs │ └── swiftype.ejs ├── share │ ├── addtoany.ejs │ ├── bdshare.ejs │ ├── default.ejs │ ├── index.ejs │ └── jiathis.ejs ├── tag.ejs ├── tags.ejs └── widget │ ├── archive.ejs │ ├── catalog.ejs │ ├── category.ejs │ ├── google_adsense.ejs │ ├── links.ejs │ ├── recent_posts.ejs │ ├── sticky_posts.ejs │ ├── tag.ejs │ └── tagcloud.ejs ├── package.json ├── scripts ├── excerpt.js ├── md5.js ├── meta.js └── thumbnail.js └── source ├── css ├── _extend.styl ├── _highlight │ ├── agate.styl │ ├── androidstudio.styl │ ├── arduino-light.styl │ ├── arta.styl │ ├── ascetic.styl │ ├── atelier-cave-dark.styl │ ├── atelier-cave-light.styl │ ├── atelier-dune-dark.styl │ ├── atelier-dune-light.styl │ ├── atelier-estuary-dark.styl │ ├── atelier-estuary-light.styl │ ├── atelier-forest-dark.styl │ ├── atelier-forest-light.styl │ ├── atelier-heath-dark.styl │ ├── atelier-heath-light.styl │ ├── atelier-lakeside-dark.styl │ ├── atelier-lakeside-light.styl │ ├── atelier-plateau-dark.styl │ ├── atelier-plateau-light.styl │ ├── atelier-savanna-dark.styl │ ├── atelier-savanna-light.styl │ ├── atelier-seaside-dark.styl │ ├── atelier-seaside-light.styl │ ├── atelier-sulphurpool-dark.styl │ ├── atelier-sulphurpool-light.styl │ ├── brown-paper.styl │ ├── brown-papersq.png │ ├── codepen-embed.styl │ ├── color-brewer.styl │ ├── dark.styl │ ├── darkula.styl │ ├── docco.styl │ ├── far.styl │ ├── foundation.styl │ ├── github-gist.styl │ ├── github.styl │ ├── googlecode.styl │ ├── grayscale.styl │ ├── highlightjs.styl │ ├── hopscotch.styl │ ├── hybrid.styl │ ├── idea.styl │ ├── index.styl │ ├── ir-black.styl │ ├── kimbie.dark.styl │ ├── kimbie.light.styl │ ├── magula.styl │ ├── mono-blue.styl │ ├── monokai-sublime.styl │ ├── monokai.styl │ ├── obsidian.styl │ ├── paraiso-dark.styl │ ├── paraiso-light.styl │ ├── pojoaque.jpg │ ├── pojoaque.styl │ ├── railscasts.styl │ ├── rainbow.styl │ ├── school-book.png │ ├── school-book.styl │ ├── solarized-dark.styl │ ├── solarized-light.styl │ ├── sunburst.styl │ ├── tomorrow-night-blue.styl │ ├── tomorrow-night-bright.styl │ ├── tomorrow-night-eighties.styl │ ├── tomorrow-night.styl │ ├── tomorrow.styl │ ├── vs.styl │ ├── xcode.styl │ └── zenburn.styl ├── _partial │ ├── archive.styl │ ├── article.styl │ ├── assets.styl │ ├── comment.styl │ ├── footer.styl │ ├── header.styl │ ├── insight.styl │ ├── nav.styl │ └── sidebar.styl ├── _responsive.styl ├── _variables.styl ├── images │ ├── logo-header.png │ ├── opacity-10.png │ ├── s-left.png │ ├── thumb-default-small.png │ └── thumb-default.png └── style.styl ├── js ├── insight.js └── main.js └── libs ├── font-awesome ├── css │ ├── font-awesome.css │ └── font-awesome.min.css └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── jquery └── 3.5.0 │ └── jquery.min.js ├── justified-gallery ├── jquery.justifiedGallery.min.js └── justifiedGallery.min.css ├── lightgallery ├── css │ ├── lg-fb-comment-box.css │ ├── lg-fb-comment-box.css.map │ ├── lg-fb-comment-box.min.css │ ├── lg-transitions.css │ ├── lg-transitions.css.map │ ├── lg-transitions.min.css │ ├── lightgallery.css │ ├── lightgallery.css.map │ └── lightgallery.min.css ├── fonts │ ├── lg.eot │ ├── lg.svg │ ├── lg.ttf │ └── lg.woff ├── img │ ├── loading.gif │ ├── video-play.png │ ├── vimeo-play.png │ └── youtube-play.png └── js │ ├── lg-autoplay.js │ ├── lg-autoplay.min.js │ ├── lg-fullscreen.js │ ├── lg-fullscreen.min.js │ ├── lg-hash.js │ ├── lg-hash.min.js │ ├── lg-pager.js │ ├── lg-pager.min.js │ ├── lg-share.js │ ├── lg-share.min.js │ ├── lg-thumbnail.js │ ├── lg-thumbnail.min.js │ ├── lg-video.js │ ├── lg-video.min.js │ ├── lg-zoom.js │ ├── lg-zoom.min.js │ ├── lightgallery.js │ └── lightgallery.min.js ├── source-code-pro ├── fonts │ ├── mrl8jkM18OlOQN8JLgasD9V_2ngZ8dMf8fLgjYEouxg.woff2 │ └── mrl8jkM18OlOQN8JLgasDy2Q8seG17bfDXYR_jUsrzg.woff2 └── styles.css └── titillium-web ├── fonts ├── 7XUFZ5tgS-tD6QamInJTcSo_WB_cotcEMUw1LsIE8mM.woff2 ├── 7XUFZ5tgS-tD6QamInJTcZSnX671uNZIV63UdXh3Mg0.woff2 ├── anMUvcNT0H1YN4FII8wpr4-67659ICLY8bMrYhtePPA.woff2 ├── anMUvcNT0H1YN4FII8wpr46gJz9aNFrmnwBdd69aqzY.woff2 ├── anMUvcNT0H1YN4FII8wpr9INifKjd1RJ3NxxEi9Cy2w.woff2 └── anMUvcNT0H1YN4FII8wpr_SNRT0fZ5CX-AqRkMYgJJo.woff2 └── styles.css /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please make sure these boxes are checked before submitting your issue. Thank you! 2 | 3 | - [ ] I have setuped and configurated the blog according to [Hexo official documentation](https://hexo.io/); 4 | - [ ] I have read the [Theme Wiki](https://github.com/ppoffice/hexo-theme-hueman/wiki) carefully and created my own configuration file(_config.yml); 5 | - [ ] I have looked up the [Issues](https://github.com/ppoffice/hexo-theme-hueman/issues) and found no duplicate issues. 6 | 7 | 请在发布新Issue之前确保你已经进行了如下工作,谢谢! 8 | 9 | - [ ] 我已经按照[Hexo官方文档](https://hexo.io/)中的步骤安装与配置了Hexo; 10 | - [ ] 我已经仔细地阅读了[主题Wiki](https://github.com/ppoffice/hexo-theme-hueman/wiki)并创建了自己的配置文件(_config.yml); 11 | - [ ] 我已经搜索了[Issues](https://github.com/ppoffice/hexo-theme-hueman/issues),并且没有找到类似的问题。 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _config.yml -------------------------------------------------------------------------------- /languages/ca.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Inici' 3 | about: 'Quant a' 4 | search: 'Cercar' 5 | archive: 'Arxiu' 6 | category: 'Categoria' 7 | uncategorized: 'Sense categoria' 8 | tag: 'Etiqueta' 9 | nav: 10 | current_page: 11 | other: 'Pàgina %d ' 12 | total_page: 13 | other: 'de %d' 14 | sidebar: 15 | follow: 'seguir' 16 | newer: 'més nou' 17 | older: 'antic' 18 | recents: 'recents' 19 | archives: 'arxius' 20 | categories: 'categories' 21 | links: 'links' 22 | tags: 'etiquetes' 23 | tag_cloud: 'etiqueta cloud' 24 | article: 25 | comments: 'Comentaris' 26 | share: 'Compartir' 27 | insight: 28 | hint: 'Type something...' 29 | posts: 'Posts' 30 | pages: 'Pages' 31 | categories: 'categories' 32 | tags: 'etiquetes' 33 | untitled: '(Untitled)' 34 | counter: 35 | views: Views 36 | count: Symbols count in article 37 | count_total: Symbols count total 38 | time: Reading time 39 | time_total: Reading time total 40 | time_minutes: mins. 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/en.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Home' 3 | about: 'About' 4 | search: 'Search' 5 | archive: 'Archive' 6 | category: 'Category' 7 | uncategorized: 'uncategorized' 8 | tag: 'Tag' 9 | nav: 10 | current_page: 11 | other: 'Page %d ' 12 | total_page: 13 | other: 'of %d' 14 | sidebar: 15 | follow: 'follow' 16 | newer: 'newer' 17 | older: 'older' 18 | recents: 'recents' 19 | sticky: 'Popular' 20 | archives: 'archives' 21 | categories: 'categories' 22 | links: 'links' 23 | tags: 'tags' 24 | tag_cloud: 'tag cloud' 25 | catalogue: 'Catalog' 26 | article: 27 | comments: 'Comments' 28 | share: 'Share' 29 | insight: 30 | hint: 'Type something...' 31 | posts: 'Posts' 32 | pages: 'Pages' 33 | categories: 'Categories' 34 | tags: 'Tags' 35 | untitled: '(Untitled)' 36 | counter: 37 | views: Views 38 | count: Symbols count in article 39 | count_total: Symbols count total 40 | time: Reading time 41 | time_total: Reading time total 42 | time_minutes: mins. 43 | adsense: 44 | sponsored: Sponsored 45 | -------------------------------------------------------------------------------- /languages/es.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Inicio' 3 | about: 'Acerca de' 4 | search: 'Buscar' 5 | archive: 'Archivo' 6 | category: 'Categoria' 7 | uncategorized: 'Sin categoría' 8 | tag: 'Etiqueta' 9 | nav: 10 | current_page: 11 | other: 'Página %d ' 12 | total_page: 13 | other: 'de %d' 14 | sidebar: 15 | follow: 'seguir' 16 | newer: 'más nuevo' 17 | older: 'antiguo' 18 | recents: 'recientes' 19 | archives: 'archivos' 20 | categories: 'categorias' 21 | links: 'links' 22 | tags: 'etiquetas' 23 | tag_cloud: 'etiqueta cloud' 24 | article: 25 | comments: 'Comentarios' 26 | share: 'Compartir' 27 | insight: 28 | hint: 'Type something...' 29 | posts: 'Entradas' 30 | pages: 'Pages' 31 | categories: 'Categorias' 32 | tags: 'Etiquetas' 33 | untitled: '(Untitled)' 34 | counter: 35 | views: Visitas 36 | count: Cantidad de caracteres en el articulo 37 | count_total: Cantidad total de caracteres 38 | time: Tiempo de lectura 39 | time_total: Tiempo total de lectura 40 | time_minutes: minutos. 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/fr.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Accueil' 3 | about: 'À propos' 4 | search: 'Rechercher' 5 | archive: 'Archive' 6 | category: 'Categorie' 7 | uncategorized: 'Aucune catégorie' 8 | tag: 'Tag' 9 | nav: 10 | current_page: 11 | other: 'Page %d ' 12 | total_page: 13 | other: 'sur %d' 14 | sidebar: 15 | follow: 'suivre' 16 | newer: '+ récent' 17 | older: '- récent' 18 | recents: 'récents' 19 | sticky: 'Populaire' 20 | archives: 'archives' 21 | categories: 'catégories' 22 | links: 'liens' 23 | tags: 'tags' 24 | tag_cloud: 'tag cloud' 25 | catalogue: 'Catalogue' 26 | article: 27 | comments: 'Commentaires' 28 | share: 'Partager' 29 | insight: 30 | hint: 'Écrivez quelque chose...' 31 | posts: 'Articles' 32 | pages: 'Pages' 33 | categories: 'Catégories' 34 | tags: 'Tags' 35 | untitled: '(Sans titre)' 36 | counter: 37 | views: Vues 38 | count: Symbols count in article 39 | count_total: Symbols count total 40 | time: Temps de lecture 41 | time_total: Temps total de lecture 42 | time_minutes: mins. 43 | adsense: 44 | sponsored: Sponsored 45 | -------------------------------------------------------------------------------- /languages/hu.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Főoldal' 3 | about: 'Elérhetőség' 4 | search: 'Keresés' 5 | archive: 'Archívum' 6 | category: 'Kategória' 7 | uncategorized: 'kategorizálatlan' 8 | tag: 'Címke' 9 | nav: 10 | current_page: 11 | other: '%d. oldal ' 12 | total_page: 13 | other: '/ %d' 14 | sidebar: 15 | follow: 'követés' 16 | newer: 'következő' 17 | older: 'előző' 18 | recents: 'friss' 19 | archives: 'archívum' 20 | categories: 'kategórák' 21 | links: 'linkek' 22 | tags: 'címkék' 23 | tag_cloud: 'címkefelhő' 24 | article: 25 | comments: 'Komment' 26 | share: 'Megosztás' 27 | insight: 28 | hint: 'Keresendő szöveg...' 29 | posts: 'Bejegyzések' 30 | pages: 'Oldalak' 31 | categories: 'Kategóriák' 32 | tags: 'Címkék' 33 | untitled: '(Névtelen)' 34 | counter: 35 | views: Views 36 | count: Symbols count in article 37 | count_total: Symbols count total 38 | time: Reading time 39 | time_total: Reading time total 40 | time_minutes: mins. 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/id.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Beranda' 3 | about: 'Tentang' 4 | search: 'Cari' 5 | archive: 'Arsip' 6 | category: 'Kategori' 7 | uncategorized: 'belum terkategori' 8 | tag: 'Tag' 9 | nav: 10 | current_page: 11 | other: 'Halaman %d ' 12 | total_page: 13 | other: 'dari %d' 14 | sidebar: 15 | follow: 'ikuti' 16 | newer: 'lebih baru' 17 | older: 'lebih lawas' 18 | recents: 'terbaru' 19 | archives: 'arsip' 20 | categories: 'kategori' 21 | links: 'tautan' 22 | tags: 'tag' 23 | tag_cloud: 'awan tag' 24 | article: 25 | comments: 'Komentar' 26 | share: 'Bagikan' 27 | insight: 28 | hint: 'Type something...' 29 | posts: 'pos' 30 | pages: 'Pages' 31 | categories: 'kategori' 32 | tags: 'tag' 33 | untitled: '(Untitled)' 34 | counter: 35 | views: Views 36 | count: Symbols count in article 37 | count_total: Symbols count total 38 | time: Reading time 39 | time_total: Reading time total 40 | time_minutes: mins. 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/ja.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'ホーム' 3 | about: 'このブログについて' 4 | search: '検索' 5 | archive: 'アーカイブ' 6 | category: 'カテゴリー' 7 | uncategorized: 'カテゴリ未設定' 8 | tag: 'タグ' 9 | nav: 10 | current_page: 11 | other: ' %d ページ' 12 | total_page: 13 | other: '%d ページ中' 14 | sidebar: 15 | follow: 'フォロー' 16 | newer: '新しい' 17 | older: '古い' 18 | recents: '最新' 19 | archives: 'アーカイブ' 20 | categories: 'カテゴリー' 21 | links: 'リンク' 22 | tags: 'タグ' 23 | tag_cloud: 'タグクラウド' 24 | article: 25 | comments: 'コメント' 26 | share: 'シェア' 27 | insight: 28 | hint: '入力してください' 29 | posts: '記事' 30 | pages: 'ページ' 31 | categories: 'カテゴリー' 32 | tags: 'タグ' 33 | untitled: '(名称未設定)' 34 | counter: 35 | views: 閲覧数 36 | count: 単語数 37 | count_total: 単語の総数 38 | time: 読書の時間 39 | time_total: 読書の合計時間 40 | time_minutes: 分 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/ko.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: '홈' 3 | about: '내 정보' 4 | search: '검색' 5 | archive: '아카이브' 6 | category: '카테고리' 7 | uncategorized: '미지정' 8 | tag: '태그' 9 | nav: 10 | current_page: 11 | other: '현재 %d 페이지 ' 12 | total_page: 13 | other: '중 %d' 14 | sidebar: 15 | follow: '팔로우' 16 | newer: '신규' 17 | older: '이전' 18 | recents: '최근 글' 19 | archives: '아카이브' 20 | categories: '카테고리' 21 | links: '링크' 22 | tags: '태그' 23 | tag_cloud: '태그 클라우드' 24 | article: 25 | comments: '댓글' 26 | share: '공유하기' 27 | insight: 28 | hint: '찾고자 하는 포스트를 검색하세요.' 29 | posts: '포스트' 30 | pages: '페이지' 31 | categories: '카테고리' 32 | tags: '태그' 33 | untitled: '(Untitled)' 34 | counter: 35 | views: 조회수 36 | count: Symbols count in article 37 | count_total: Symbols count total 38 | time: 소요 시간 39 | time_total: 전체 소요 시간 40 | time_minutes: 분. 41 | adsense: 42 | sponsored: 후원자 43 | -------------------------------------------------------------------------------- /languages/pt-BR.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Home' 3 | about: 'Sobre' 4 | search: 'Busca' 5 | archive: 'Arquivo' 6 | category: 'Categoria' 7 | uncategorized: 'sem categoria' 8 | tag: 'Tag' 9 | nav: 10 | current_page: 11 | other: 'Página %d ' 12 | total_page: 13 | other: 'de %d' 14 | sidebar: 15 | follow: 'seguir' 16 | newer: 'novos' 17 | older: 'antigos' 18 | recents: 'recentes' 19 | archives: 'arquivos' 20 | categories: 'categorias' 21 | links: 'links' 22 | tags: 'tags' 23 | tag_cloud: 'tag cloud' 24 | article: 25 | comments: 'Comentários' 26 | share: 'Compartilhar' 27 | insight: 28 | hint: 'Type something...' 29 | posts: 'Posts' 30 | pages: 'Pages' 31 | categories: 'categorias' 32 | tags: 'tags' 33 | untitled: '(Untitled)' 34 | counter: 35 | views: Views 36 | count: Symbols count in article 37 | count_total: Symbols count total 38 | time: Reading time 39 | time_total: Reading time total 40 | time_minutes: mins. 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/ru.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Главная' 3 | about: 'О сайте' 4 | search: 'Поиск' 5 | archive: 'архив' 6 | category: 'категории : ' 7 | uncategorized: 'без категории' 8 | tag: 'тэг : ' 9 | nav: 10 | current_page: 11 | other: 'Страница %d ' 12 | total_page: 13 | other: 'из %d' 14 | sidebar: 15 | follow: 'Подписаться' 16 | newer: 'новые' 17 | older: 'старые' 18 | recents: 'недавние' 19 | archives: 'архивы' 20 | categories: 'Категории' 21 | links: 'ссылки' 22 | tags: 'Тэги' 23 | tag_cloud: 'Облако тэгов' 24 | article: 25 | comments: 'Комментарии' 26 | share: 'Поделиться' 27 | insight: 28 | hint: 'Введите что-нибудь...' 29 | posts: 'посты' 30 | pages: 'страницы' 31 | categories: 'категории' 32 | tags: 'теги' 33 | untitled: '(Без названия)' 34 | counter: 35 | views: Просмотров 36 | count: Кол-во символов в статье 37 | count_total: Общее кол-во символов 38 | time: Время чтения 39 | time_total: Общее время чтения 40 | time_minutes: мин. 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/tr.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Anasayfa' 3 | about: 'Hakkında' 4 | search: 'Ara' 5 | archive: 'Arşiv' 6 | category: 'Kategori' 7 | uncategorized: 'Kategorisiz' 8 | tag: 'Etiket' 9 | nav: 10 | current_page: 11 | other: 'Sayfa %d ' 12 | total_page: 13 | other: 'toplam %d' 14 | sidebar: 15 | follow: 'Takip Et' 16 | newer: 'sonraki' 17 | older: 'önceki' 18 | recents: 'son yazılar' 19 | archives: 'arşiv' 20 | categories: 'kategoriler' 21 | links: 'linkler' 22 | tags: 'etiketler' 23 | tag_cloud: 'etiket bulutu' 24 | article: 25 | comments: 'Yorumlar' 26 | share: 'Paylaş' 27 | insight: 28 | hint: 'Bir şeyler yaz...' 29 | posts: 'Gönderiler' 30 | pages: 'Sayfalar' 31 | categories: 'Kategoriler' 32 | tags: 'Etiketler' 33 | untitled: '(Başlıksız)' 34 | counter: 35 | views: Görünümler 36 | count: Makalede sayılan semboller 37 | count_total: Sayılan toplan semboller 38 | time: Okuma Süresi 39 | time_total: Toplmada Okuma Süresi 40 | time_minutes: dk. 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/vi.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: 'Trang chủ' 3 | about: 'Giới thiệu' 4 | search: 'Tìm kiếm' 5 | archive: 'Lưu trữ' 6 | category: 'Chuyên mục' 7 | uncategorized: 'Chưa phân loại' 8 | tag: 'Thẻ' 9 | nav: 10 | current_page: 11 | other: '%d ' 12 | total_page: 13 | other: '/ %d' 14 | sidebar: 15 | follow: 'Theo dõi' 16 | newer: 'Mới hơn' 17 | older: 'Cũ hơn' 18 | recents: 'Bài viết mới' 19 | archives: 'Lưu trữ' 20 | categories: 'Chuyên mục' 21 | links: 'Liên kết' 22 | tags: 'Thẻ' 23 | tag_cloud: 'Mây thẻ' 24 | article: 25 | comments: 'Bình luận' 26 | share: 'Chia sẻ' 27 | insight: 28 | hint: 'Gõ gì đó...' 29 | posts: 'Bài viết' 30 | pages: 'Trang' 31 | categories: 'Chuyên mục' 32 | tags: 'Thẻ' 33 | untitled: '(Không đề)' 34 | counter: 35 | views: Views 36 | count: Symbols count in article 37 | count_total: Symbols count total 38 | time: Reading time 39 | time_total: Reading time total 40 | time_minutes: mins. 41 | adsense: 42 | sponsored: Sponsored 43 | -------------------------------------------------------------------------------- /languages/zh-CN.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: '主页' 3 | about: '关于' 4 | search: '搜索' 5 | archive: '归档' 6 | category: '分类' 7 | uncategorized: '未分类' 8 | tag: '标签' 9 | nav: 10 | current_page: 11 | other: '第 %d 页,' 12 | total_page: 13 | other: '共 %d 页' 14 | sidebar: 15 | follow: '关注我 ' 16 | newer: '下一篇' 17 | older: '上一篇' 18 | recents: '最新文章' 19 | archives: '归档' 20 | categories: '分类' 21 | links: '链接' 22 | tags: '标签' 23 | tag_cloud: '标签云' 24 | catalogue: '目录' 25 | article: 26 | comments: '评论' 27 | share: '分享到' 28 | insight: 29 | hint: '想要查找什么...' 30 | posts: '文章' 31 | pages: '页面' 32 | categories: '分类' 33 | tags: '标签' 34 | untitled: '(未命名)' 35 | counter: 36 | views: 阅读次数 37 | count: 本文字数 38 | count_total: 站点总字数 39 | time: 阅读时长 40 | time_total: 站点阅读时长 41 | time_minutes: 分钟 42 | adsense: 43 | sponsored: Sponsored 44 | -------------------------------------------------------------------------------- /languages/zh-TW.yml: -------------------------------------------------------------------------------- 1 | index: 2 | home: '首頁' 3 | about: '關於' 4 | search: '搜尋' 5 | archive: '所有文章' 6 | category: '分類' 7 | uncategorized: '未分類' 8 | tag: '標籤' 9 | nav: 10 | current_page: 11 | other: '第 %d 頁,' 12 | total_page: 13 | other: '共 %d 頁' 14 | sidebar: 15 | follow: '追蹤 ' 16 | newer: '下一篇' 17 | older: '上一篇' 18 | recents: '最新文章' 19 | sticky: '熱門文章' 20 | archives: '所有文章' 21 | categories: '分類' 22 | links: '連結' 23 | tags: '標籤' 24 | tag_cloud: '標籤雲' 25 | catalogue: '目錄' 26 | article: 27 | comments: '評論' 28 | share: '分享到' 29 | insight: 30 | hint: '輸入關鍵字...' 31 | posts: '文章' 32 | pages: '頁面' 33 | categories: '分類' 34 | tags: '標籤' 35 | untitled: '(未命名)' 36 | counter: 37 | views: 閱讀次數 38 | count: 文章字數 39 | count_total: 總字數 40 | time: 所需閱讀時間 41 | time_total: 所需總閱讀時間 42 | time_minutes: 分鐘 43 | adsense: 44 | sponsored: Sponsored 45 | -------------------------------------------------------------------------------- /layout/archive.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('common/archive') %> -------------------------------------------------------------------------------- /layout/author.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('common/archive') %> 2 | -------------------------------------------------------------------------------- /layout/authors.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('common/article', { post: page }) %> 2 | -------------------------------------------------------------------------------- /layout/categories.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('common/article', { post: page }) %> 2 | -------------------------------------------------------------------------------- /layout/category.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('common/archive') %> 2 | -------------------------------------------------------------------------------- /layout/comment/counter.ejs: -------------------------------------------------------------------------------- 1 | <% if (post.comments) { %> 2 | 3 | 4 | <% if (theme.comment.disqus) { %> 5 | 0 6 | <% } else if (theme.comment.duoshuo) { %> 7 | 0 8 | <% } else if (theme.comment.isso) { %> 9 | 10 | <% } else if (theme.comment.facebook) { %> 11 | 0 12 | <% } else if (theme.comment.changyan.on) { %> 13 | 0 14 | <% } %> 15 | 16 | <% } %> 17 | -------------------------------------------------------------------------------- /layout/comment/disqus.ejs: -------------------------------------------------------------------------------- 1 | <% if (typeof(script) !== 'undefined' && script) { %> 2 | 18 | <% } else { %> 19 |
20 | <%- excerpt(post) %> 21 |
22 |