推荐两个开源的快速创建web站点的工具
VuePress
- 给企业建站挺快,只要主题定制好;
- 基于Markdown制作页面,挺舒服;
HUGO
- Hugo 非常适合博客,文档等等网站的生成。
- 基于Markdown制作页面,挺舒服;
- 有大量模板;
使用HUGO举个例子,在mac系统上:
brew install hugo hugo version # Create site and cd into it hugo new site my-site && cd my-site # Clone the ReFresh theme into the themes folder git init git submodule add https://github.com/PippoRJ/hugo-refresh themes/hugo-refresh # Remove the default config rm config.toml # Copy the Example site content and configuration in my-site cp -R themes/hugo-refresh/exampleSite/* ./ # Open the site in your browser hugo server -D
使用vuepress制作的个人站点
使用hugo制作的例子