Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roninro/Gemini
A Hugo theme
https://github.com/roninro/Gemini
hugo hugo-theme
Last synced: 5 days ago
JSON representation
A Hugo theme
- Host: GitHub
- URL: https://github.com/roninro/Gemini
- Owner: roninro
- Archived: true
- Created: 2017-06-04T02:27:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T05:33:11.000Z (over 7 years ago)
- Last Synced: 2024-05-06T15:12:22.394Z (6 months ago)
- Topics: hugo, hugo-theme
- Language: HTML
- Homepage:
- Size: 12.1 MB
- Stars: 18
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - roninro/Gemini - A Hugo theme (others)
README
# Gemini theme for hugo
Gemini is a clear and responsive theme for [hugo](http://gohugo.io/). Ported from [Pinghsu Theme](https://github.com/chakhsu/pinghsu), a Typecho theme.
[Demo](https://mjyi.github.io/Gemini/)
![screenshot](images/screenshot.png)
## Installation
```
cd ~/path/themes
git clone https://github.com/mjyi/Gemini.git
```## Configuration
**config.toml**
```toml
baseurl = "https://mjyi.github.io/Gemini/"
title = "Hugo Theme Gemini"
canonifyurls = true
paginate = 3
languageCode = "en-us"
MetaDataFormat = "yaml"
theme = "Gemini"
googleAnalytics = "" # delete or comment to disable Google Analytics JS generation
disqusShortname = "mjyi-io" #delete or comment to disable Disqus comments[params]
Keywords = ""
Author = "Gemini"
recentPostCount = 7
intro = ["I am a iOS Developer", "Work in Hangzhou"][[params.social]]
title = "Email"
url = "mailto:[email protected]"
[[params.social]]
title = "Github"
url = "https://github.com/mjyi"
[[params.social]]
title = "RSS"
url = "" #default index.xml[[menu.main]]
name = "Archives"
url = "/post/"
weight = -200
[[menu.main]]
name = "Tags"
url = "/tags/"
weight = -180
[[menu.main]]
name = "About"
url = "/about"
weight = -160
```**Post Detail Configuration**
in archetypes/post.md
```
+++
tags = ""
categories = ""
image = "/images/thumbs/0.jpg" #set a picture, or randomly select one in the folder images/thumbs
draft = true
comments = true
toc = true
author = ""
author_url = ""
+++```