diff --git a/source/_posts/Getting-Started.md b/source/_posts/Getting-Started.md deleted file mode 100644 index d6e3cc4..0000000 --- a/source/_posts/Getting-Started.md +++ /dev/null @@ -1,35 +0,0 @@ -title: Getting Started with Icarus -date: 2018-10-22 19:23:59 -thumbnail: /gallery/thumbnails/desert.jpg -tags: -- Getting Started ---- -A simple, delicate, and modern theme for the static site generator Hexo. It allows you to set up a single or multiple-column (up to three column) blog with its versatile layout configuration. Additionally, it offers plentiful plugins and pluggable widgets so that you can enable the features you want in no time. And with the all-new API designing, Icarus makes the development of this theme painless for developers and users. - - - -To set up Icarus in your blog, please download the tarball from the GitHub and extract it to your Hexo blog's theme directory. Alternatively, you can run the following command: - -```bash -git clone https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus -b -``` -You may omit the ` -b ` to get the latest development version of Icarus. Furthermore, you can install Icarus as a git submodule by executing the following command: - -```bash -git submodule add https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus -``` - -Next, replace the theme setting in your blog's `_config.yml` file: - -```yaml -theme: icarus -``` - -Finally, use the following command to start the Hexo local server and begin composing! - -```yaml -hexo s -``` -> Don't forget to check out the [Getting Started](/hexo-theme-icarus/tags/Getting-Started/) series to help you master Icarus quickly! Also, you can fetch the [`site` branch](https://github.com/ppoffice/hexo-theme-icarus/tree/site) from the GitHub repository if you need more configuration examples. - -unsplash-logoChandler Chen \ No newline at end of file diff --git a/source/_posts/en/Getting-Started.md b/source/_posts/en/Getting-Started.md new file mode 100644 index 0000000..8723250 --- /dev/null +++ b/source/_posts/en/Getting-Started.md @@ -0,0 +1,64 @@ +title: Getting Started with Icarus +date: 2020-01-01 +thumbnail: /gallery/thumbnails/desert.jpg +tags: +- Getting Started +- Icarus User Guide +language: en +--- +A simple, delicate, and modern theme for the static site generator Hexo. +It allows you to set up a single or multiple-column (up to three column) blog with its versatile layout configuration. +Additionally, it offers plentiful plugins and pluggable widgets so that you can enable the features you want in no time. +And with the all-new API designing, Icarus makes the development of this theme painless for developers and users. + + + +
+This article is also available in: 简体中文. +
+ +To set up Icarus in your blog, please download the tarball from the GitHub and extract it to your Hexo blog's theme +directory. +Alternatively, you can run the following command: + +{% codeblock "Git Bash/Shell" %} +git clone https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus -b --depth 1 +{% endcodeblock %} + +You may omit the `-b ` to get the latest development version of Icarus. +You may also leave `--depth 1` out if you want to download full Git history if Icarus as well. +Furthermore, you can install Icarus as a Git submodule by executing the following command: + +{% codeblock "Git Bash/Shell" %} +git submodule add https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus +{% endcodeblock %} + +Next, replace the theme setting in your blog's `_config.yml` file: + +{% codeblock _config.yml lang:yaml %} +theme: icarus +{% endcodeblock %} + +or use the `hexo` CLI to change the theme setting: + +{% codeblock "Shell" %} +hexo config theme icarus +{% endcodeblock %} + +Finally, use the following command to start the Hexo local server and begin composing! + +{% codeblock "Shell" %} +hexo s +{% endcodeblock %} + +You can check out the [Icarus User Guide](/hexo-theme-icarus/tags/Icarus-User-Guide/) article series to learn more +about Icarus and its configuration. +Also, you can refer to the source code of this site for more examples by fetching the +[`site` branch](https://github.com/ppoffice/hexo-theme-icarus/tree/site) of Icarus from GitHub. + + +
+Something wrong with this article? Click here to submit your revision. +
+ +unsplash-logoChandler Chen diff --git a/source/_posts/translation/Chinese.md b/source/_posts/translation/Chinese.md deleted file mode 100644 index c1bf820..0000000 --- a/source/_posts/translation/Chinese.md +++ /dev/null @@ -1,56 +0,0 @@ -title: Icarus快速上手 -date: 2017-01-31 21:55:37 -language: zh-CN -categories: -- Translations -comments: false -thumbnail: /gallery/thumbnails/panda.jpg -providers: - cdn: '[cdnjs]https://cdn.staticfile.org/${package}/${version}/${filename}' - fontcdn: https://fonts.loli.net/${type}?family=${fontname} - iconcdn: fontawesome -comment: - type: valine - app_id: QuQK82UpN8gNkXIaKIszbPUY-gzGzoHsz - app_key: B0D5cYRcXrwNGnBoQdRoDTqw - notify: false - verify: false - placeholder: 快来评论吧 -plugins: - gallery: true - outdated_browser: true - mathjax: true - animejs: true - back_to_top: true - progressbar: true ---- -作为静态网站生成器Hexo的一款主题,Icarus以简洁、现代和精美为设计理念。在灵活且强大的配置系统的助力下,用户可以自由实现单栏与多栏的灵活页面布局。同时,Icarus提供了丰富的插件与挂件供用户选择,让网站的个性化配置变得触手可及。此外,得力于全新设计的API,开发者可以更便捷地对Icarus进行深层定制。 - - -Icarus的安装非常简单,您只需从GitHub的仓库中下载Icarus源码并解压到博客的主题目录下的`icarus`目录中(themes/icarus)。您也可以使用如下命令将此主题下载到博客中: - -```bash -git clone https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus -b -``` - -您可以省略` -b `来下载Icarus的最新开发版本。另外,您也可以将Icarus安装为Git子模块(submodule)到您的博客中: - -```bash -git submodule add https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus -``` - -接下来,请将博客根目录下的`_config.yml`中的主题设置改为`icarus`: - -```yaml -theme: icarus -``` - -最后,请使用如下命令来启动Hexo本地测试服务器。祝您下笔如有神! - -```yaml -hexo s -``` - -> 在此网站上您可以阅读[开始使用](/hexo-theme-icarus/tags/Getting-Started/)系列文章来快速掌握Icarus。同时,如果需要更多的Icarus使用示例,您可以从GitHub上下载[`site`分支](https://github.com/ppoffice/hexo-theme-icarus/tree/site)的Icarus源码。 - -unsplash-logoPascal Müller \ No newline at end of file diff --git a/source/_posts/zh-CN/Getting-Started.md b/source/_posts/zh-CN/Getting-Started.md new file mode 100644 index 0000000..d9e58fb --- /dev/null +++ b/source/_posts/zh-CN/Getting-Started.md @@ -0,0 +1,64 @@ +title: Icarus快速上手 +date: 2016-01-02 +thumbnail: /gallery/thumbnails/chinese-painting.jpg +tags: +- Getting Started +- Icarus用户指南 +language: zh-CN +providers: + cdn: loli + fontcdn: loli + iconcdn: loli +--- + +
+本文同时提供以下语言的翻译:English。 +
+ +作为静态网站生成器Hexo的一款主题,Icarus以简洁、现代和精美为设计理念。在灵活且强大的配置系统的助力下,用户可以自由实现单栏与 +多栏的灵活页面布局。同时,Icarus提供了丰富的插件与挂件供用户选择,让网站的个性化配置变得触手可及。此外,得力于全新设计的API, +开发者可以更便捷地对Icarus进行深层定制。 + + + +Icarus的安装非常简单,您只需从GitHub的仓库中下载Icarus源码并解压到博客的主题目录下的`themes/icarus`目录中。 +您也可以使用如下命令将此主题下载到博客中: + +{% codeblock "Git Bash命令行" %} +git clone https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus -b --depth 1 +{% endcodeblock %} + +您可以省略`-b `来下载Icarus的最新开发版本。如果你想同时下载Git仓库的完整修改历史,请同时省略`--depth 1`。 +另外,您也可以将Icarus作为Git子模块(submodule)安装到您的博客中: + +{% codeblock "Git Bash命令行" %} +git submodule add https://github.com/ppoffice/hexo-theme-icarus.git themes/icarus +{% endcodeblock %} + +接下来,请将博客根目录下的`_config.yml`中的主题设置改为`icarus`: + +{% codeblock _config.yml lang:yaml %} +theme: icarus +{% endcodeblock %} + +或使用`hexo`命令修改主题设置: + +{% codeblock "命令行" %} +hexo config theme icarus +{% endcodeblock %} + + +最后,请使用如下命令来启动Hexo本地测试服务器。 + +{% codeblock "命令行" %} +hexo s +{% endcodeblock %} + +您可以继续阅读[Icarus用户指南](/hexo-theme-icarus/tags/Icarus用户指南/)系列文章来了解Icarus的使用与配置。 +同时,您可以从Icarus的[`site`分支](https://github.com/ppoffice/hexo-theme-icarus/tree/site)上获取本网站的源码供您参考。 + +
+文章内容有误?请点击此处提交修改。 +
+ +unsplash-logo王希孟 千里江山图卷 diff --git a/source/gallery/thumbnails/chinese-painting.jpg b/source/gallery/thumbnails/chinese-painting.jpg new file mode 100644 index 0000000..3d77b15 Binary files /dev/null and b/source/gallery/thumbnails/chinese-painting.jpg differ diff --git a/source/gallery/thumbnails/mosque.jpg b/source/gallery/thumbnails/mosque.jpg deleted file mode 100644 index ecea686..0000000 Binary files a/source/gallery/thumbnails/mosque.jpg and /dev/null differ diff --git a/source/gallery/thumbnails/panda.jpg b/source/gallery/thumbnails/panda.jpg deleted file mode 100644 index 26cbc04..0000000 Binary files a/source/gallery/thumbnails/panda.jpg and /dev/null differ