├── .gitignore ├── 404.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _config.yml ├── _neededFile └── search.ejs ├── languages ├── default.yml ├── ko.yml ├── zh-CN.yml └── zh-TW.yml ├── layout ├── _partial │ ├── _head-sections │ │ ├── IE.ejs │ │ ├── script.ejs │ │ ├── seo.ejs │ │ ├── style.ejs │ │ └── title.ejs │ ├── after-footer.ejs │ ├── archive.ejs │ ├── article-meta.ejs │ ├── comments.ejs │ ├── footer.ejs │ ├── gallery.ejs │ ├── head.ejs │ ├── header.ejs │ ├── pagination.ejs │ └── sidebar.ejs ├── _thirdParty │ ├── baidu_an.ejs │ ├── baidu_sitemap.ejs │ ├── disqus.ejs │ ├── duoshuo.ejs │ ├── google_analytics.ejs │ ├── google_sitemap.ejs │ └── mathjax.ejs ├── _widget │ ├── archive.ejs │ ├── category.ejs │ ├── friends.ejs │ ├── notification.ejs │ ├── popular.ejs │ └── tagcloud.ejs ├── archive.ejs ├── category.ejs ├── index.ejs ├── layout.ejs ├── page.ejs ├── post.ejs └── tag.ejs ├── package.json ├── scripts ├── filter │ ├── emptycode.filter.js │ └── translation.filter.js ├── generator │ ├── index.js │ └── lib │ │ └── generator.js └── helper │ ├── getCurPosts.js │ ├── my_paginator.js │ ├── pickImgs.js │ └── sortPosts.js ├── source ├── css │ ├── _base │ │ ├── _after-footer.less │ │ ├── _animation.less │ │ ├── _article-meta.less │ │ ├── _footer.less │ │ ├── _header.less │ │ ├── _media.less │ │ ├── _pagination.less │ │ ├── _reset.less │ │ └── _sidebar.less │ ├── _func.less │ ├── _variable.less │ ├── base.less │ ├── pages │ │ ├── archive.less │ │ ├── article-exp.less │ │ ├── comments.css │ │ ├── othersPages.less │ │ └── post.less │ └── thirdParty │ │ ├── font-awesome.min.css │ │ └── highlight │ │ ├── github.css │ │ └── solarized-light.css ├── favicon.ico ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 └── js │ ├── app.js │ ├── highsong.js │ ├── search.js │ └── thirdParty │ ├── busuanzi.min.js │ ├── gitment.browser.js │ ├── gitment.browser.js.map │ ├── gitment.browser.min.js │ ├── gitment.browser.min.js.map │ ├── highlight.pack.js │ └── leancloud.min.js └── translate └── korean ├── README_kr.md └── _config_kr.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .history -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/404.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/_config.yml -------------------------------------------------------------------------------- /_neededFile/search.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/_neededFile/search.ejs -------------------------------------------------------------------------------- /languages/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/languages/default.yml -------------------------------------------------------------------------------- /languages/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/languages/ko.yml -------------------------------------------------------------------------------- /languages/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/languages/zh-CN.yml -------------------------------------------------------------------------------- /languages/zh-TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/languages/zh-TW.yml -------------------------------------------------------------------------------- /layout/_partial/_head-sections/IE.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/_head-sections/IE.ejs -------------------------------------------------------------------------------- /layout/_partial/_head-sections/script.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/_head-sections/script.ejs -------------------------------------------------------------------------------- /layout/_partial/_head-sections/seo.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/_head-sections/seo.ejs -------------------------------------------------------------------------------- /layout/_partial/_head-sections/style.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/_head-sections/style.ejs -------------------------------------------------------------------------------- /layout/_partial/_head-sections/title.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/_head-sections/title.ejs -------------------------------------------------------------------------------- /layout/_partial/after-footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/after-footer.ejs -------------------------------------------------------------------------------- /layout/_partial/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/archive.ejs -------------------------------------------------------------------------------- /layout/_partial/article-meta.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/article-meta.ejs -------------------------------------------------------------------------------- /layout/_partial/comments.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/comments.ejs -------------------------------------------------------------------------------- /layout/_partial/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/footer.ejs -------------------------------------------------------------------------------- /layout/_partial/gallery.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/gallery.ejs -------------------------------------------------------------------------------- /layout/_partial/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/head.ejs -------------------------------------------------------------------------------- /layout/_partial/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/header.ejs -------------------------------------------------------------------------------- /layout/_partial/pagination.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/pagination.ejs -------------------------------------------------------------------------------- /layout/_partial/sidebar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_partial/sidebar.ejs -------------------------------------------------------------------------------- /layout/_thirdParty/baidu_an.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_thirdParty/baidu_an.ejs -------------------------------------------------------------------------------- /layout/_thirdParty/baidu_sitemap.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_thirdParty/baidu_sitemap.ejs -------------------------------------------------------------------------------- /layout/_thirdParty/disqus.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_thirdParty/disqus.ejs -------------------------------------------------------------------------------- /layout/_thirdParty/duoshuo.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_thirdParty/duoshuo.ejs -------------------------------------------------------------------------------- /layout/_thirdParty/google_analytics.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_thirdParty/google_analytics.ejs -------------------------------------------------------------------------------- /layout/_thirdParty/google_sitemap.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_thirdParty/google_sitemap.ejs -------------------------------------------------------------------------------- /layout/_thirdParty/mathjax.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_thirdParty/mathjax.ejs -------------------------------------------------------------------------------- /layout/_widget/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_widget/archive.ejs -------------------------------------------------------------------------------- /layout/_widget/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_widget/category.ejs -------------------------------------------------------------------------------- /layout/_widget/friends.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_widget/friends.ejs -------------------------------------------------------------------------------- /layout/_widget/notification.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_widget/notification.ejs -------------------------------------------------------------------------------- /layout/_widget/popular.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_widget/popular.ejs -------------------------------------------------------------------------------- /layout/_widget/tagcloud.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/_widget/tagcloud.ejs -------------------------------------------------------------------------------- /layout/archive.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/archive.ejs -------------------------------------------------------------------------------- /layout/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/category.ejs -------------------------------------------------------------------------------- /layout/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/index.ejs -------------------------------------------------------------------------------- /layout/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/layout.ejs -------------------------------------------------------------------------------- /layout/page.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/page.ejs -------------------------------------------------------------------------------- /layout/post.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/post.ejs -------------------------------------------------------------------------------- /layout/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/layout/tag.ejs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/package.json -------------------------------------------------------------------------------- /scripts/filter/emptycode.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/scripts/filter/emptycode.filter.js -------------------------------------------------------------------------------- /scripts/filter/translation.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/scripts/filter/translation.filter.js -------------------------------------------------------------------------------- /scripts/generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/scripts/generator/index.js -------------------------------------------------------------------------------- /scripts/generator/lib/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/scripts/generator/lib/generator.js -------------------------------------------------------------------------------- /scripts/helper/getCurPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/scripts/helper/getCurPosts.js -------------------------------------------------------------------------------- /scripts/helper/my_paginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/scripts/helper/my_paginator.js -------------------------------------------------------------------------------- /scripts/helper/pickImgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/scripts/helper/pickImgs.js -------------------------------------------------------------------------------- /scripts/helper/sortPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/scripts/helper/sortPosts.js -------------------------------------------------------------------------------- /source/css/_base/_after-footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_after-footer.less -------------------------------------------------------------------------------- /source/css/_base/_animation.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_animation.less -------------------------------------------------------------------------------- /source/css/_base/_article-meta.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_article-meta.less -------------------------------------------------------------------------------- /source/css/_base/_footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_footer.less -------------------------------------------------------------------------------- /source/css/_base/_header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_header.less -------------------------------------------------------------------------------- /source/css/_base/_media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_media.less -------------------------------------------------------------------------------- /source/css/_base/_pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_pagination.less -------------------------------------------------------------------------------- /source/css/_base/_reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_reset.less -------------------------------------------------------------------------------- /source/css/_base/_sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_base/_sidebar.less -------------------------------------------------------------------------------- /source/css/_func.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_func.less -------------------------------------------------------------------------------- /source/css/_variable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/_variable.less -------------------------------------------------------------------------------- /source/css/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/base.less -------------------------------------------------------------------------------- /source/css/pages/archive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/pages/archive.less -------------------------------------------------------------------------------- /source/css/pages/article-exp.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/pages/article-exp.less -------------------------------------------------------------------------------- /source/css/pages/comments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/pages/comments.css -------------------------------------------------------------------------------- /source/css/pages/othersPages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/pages/othersPages.less -------------------------------------------------------------------------------- /source/css/pages/post.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/pages/post.less -------------------------------------------------------------------------------- /source/css/thirdParty/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/thirdParty/font-awesome.min.css -------------------------------------------------------------------------------- /source/css/thirdParty/highlight/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/thirdParty/highlight/github.css -------------------------------------------------------------------------------- /source/css/thirdParty/highlight/solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/css/thirdParty/highlight/solarized-light.css -------------------------------------------------------------------------------- /source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/favicon.ico -------------------------------------------------------------------------------- /source/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /source/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/app.js -------------------------------------------------------------------------------- /source/js/highsong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/highsong.js -------------------------------------------------------------------------------- /source/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/search.js -------------------------------------------------------------------------------- /source/js/thirdParty/busuanzi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/thirdParty/busuanzi.min.js -------------------------------------------------------------------------------- /source/js/thirdParty/gitment.browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/thirdParty/gitment.browser.js -------------------------------------------------------------------------------- /source/js/thirdParty/gitment.browser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/thirdParty/gitment.browser.js.map -------------------------------------------------------------------------------- /source/js/thirdParty/gitment.browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/thirdParty/gitment.browser.min.js -------------------------------------------------------------------------------- /source/js/thirdParty/gitment.browser.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/thirdParty/gitment.browser.min.js.map -------------------------------------------------------------------------------- /source/js/thirdParty/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/thirdParty/highlight.pack.js -------------------------------------------------------------------------------- /source/js/thirdParty/leancloud.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/source/js/thirdParty/leancloud.min.js -------------------------------------------------------------------------------- /translate/korean/README_kr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/translate/korean/README_kr.md -------------------------------------------------------------------------------- /translate/korean/_config_kr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekaholicLin/hexo-theme-ylion/HEAD/translate/korean/_config_kr.yml --------------------------------------------------------------------------------