Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RainerChiang/simpleness
hugo theme simpleness
https://github.com/RainerChiang/simpleness
concise hugo hugo-theme simple
Last synced: 3 months ago
JSON representation
hugo theme simpleness
- Host: GitHub
- URL: https://github.com/RainerChiang/simpleness
- Owner: RainerChiang
- License: mit
- Created: 2020-12-12T12:32:15.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-05T11:27:19.000Z (over 2 years ago)
- Last Synced: 2024-06-21T17:06:44.911Z (5 months ago)
- Topics: concise, hugo, hugo-theme, simple
- Language: HTML
- Homepage: https://themes.gohugo.io/themes/simpleness/
- Size: 642 KB
- Stars: 31
- Watchers: 1
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - RainerChiang/simpleness - hugo theme simpleness (others)
README
# Hugo Theme: Simpleness
Simpleness is a concise theme for hugo which is ported from [contrast-hugo](https://github.com/niklasbuschmann/contrast-hugo).
![screenshot](https://raw.githubusercontent.com/RainerChiang/simpleness/master/images/screenshot.png)
## Live Demo
- https://rainerchiang.github.io/simpleness/
- https://rainerchiang.github.io## Features
- MathJax suport
- Google Analytics support
- Comment systems include: disqus, valine
- Table of content## TODO
- [ ] Pagination for posts
## Quick Start
### 1. Install Hugo
[Download](https://github.com/gohugoio/hugo/releases) the appropriate version for your platform.
I used [hugo_extended_0.75.1_Linux-64bit.deb](https://github.com/gohugoio/hugo/releases/download/v0.75.1/hugo_extended_0.75.1_Linux-64bit.deb) to develop this theme.
### 2. Create a New Site
```shell
hugo new site myBlog
```### 3. Use hugo theme simpleness
```shell
cd myBlog
git init
git submodule add https://github.com/RainerChiang/simpleness.git themes/simpleness
```copy the content of exampleSite
```shell
cp themes/simpleness/exampleSite/config.toml .
cp -r themes/simpleness/exampleSite/content .
```build site
```shell
hugo server
```then, open http://localhost:1313/ in your browser。
## Example Repository
There's a example repo [RainerChiang/upload-theme](https://github.com/RainerChiang/upload-theme) on Github as a reference.