Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coderzh/hugo-rapid-theme
A hugo theme as
https://github.com/coderzh/hugo-rapid-theme
Last synced: about 1 month ago
JSON representation
A hugo theme as
- Host: GitHub
- URL: https://github.com/coderzh/hugo-rapid-theme
- Owner: coderzh
- License: mit
- Created: 2016-02-05T14:22:20.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-11-27T09:13:51.000Z (about 2 years ago)
- Last Synced: 2024-08-02T18:43:15.008Z (4 months ago)
- Language: JavaScript
- Homepage: http://blog.coderzh.com
- Size: 4.52 MB
- Stars: 31
- Watchers: 7
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-hacking-lists - coderzh/hugo-rapid-theme - A hugo theme as (JavaScript)
README
# hugo-rapid-theme
Demo: [http://blog.coderzh.com/](http://blog.coderzh.com/)
## Step1 Install Hugo
Set [Hugo Install](http://www.gohugo.org/doc/overview/installing/)
## Step2 Create your site
```
hugo new site your-blog-name
cd your-blog-name
```## Step3 Clone the theme repo
```
git clone https://github.com/coderzh/hugo-rapid-theme.git themes/hugo-rapid-theme# replace config file
rm config.toml
cp themes/hugo-rapid-theme/config.yaml .
```## Step4 Start your site
```
# new content
hugo new about.md
# start server
hugo server
```## Step5 Have Fun
Now you can open [http://localhost:1313](http://localhost:1313)
Modify the config.yaml and other things, and have fun!
You can also make this repo as submodule:
```
git init
git submodule add https://github.com/coderzh/hugo-rapid-theme.git themes/hugo-rapid-theme
```