Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgechato/hution
Notion like theme for Hugo
https://github.com/jorgechato/hution
hugo js
Last synced: 27 days ago
JSON representation
Notion like theme for Hugo
- Host: GitHub
- URL: https://github.com/jorgechato/hution
- Owner: jorgechato
- License: mit
- Created: 2021-03-13T19:48:52.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-30T02:33:44.000Z (almost 2 years ago)
- Last Synced: 2024-11-07T10:46:02.708Z (3 months ago)
- Topics: hugo, js
- Language: HTML
- Homepage:
- Size: 503 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hution a [notion](https://www.notion.so/) like theme
## Installation & Update
```bash
$ # install
$ git submodule add https://github.com/jorgechato/hution.git themes/hution$ # update
$ git submodule update --remote --merge
```
If you want to know more information, see Hution doc.## Usage
> IMPORTANT: Any post create with a date in the future will be treated as draft and filter out from the post list.
> If you want to set up the size of the images use `width`### `config.toml` example
```toml
theme = "hution"
baseurl = "https://example.com/"
title = "Hution Themes"
paginate = 3
languageCode = "en"enableEmoji = true
# Optional
# If you use googleAnalytics, you set top-level options in config.toml to the beginning of the config file like other top-level options.
googleAnalytics = "UA-XXXXXXXX-XX"
# and disqus too.
disqusShortName = "yourdisqusshortname"[params]
mainSections = ["post"]
customCSS = ["/custom.css"]
favicon = "/img/favicon.png"
color = "#FFFFFF"# Router
[permalinks]
post = "/posts/:title"[Author]
name = "Jorge Chato"[taxonomies]
author = "author"
tag = "tags"
category = "categories"# copy paste this block and change for each social media to add how many ever social media
# acounts/links you want
[[params.social]]
name="name of social media"
url="link to social media"
icon="A icon from https://fontawesome.com/"
```## Posts
```md
---
title: ""
date: "2020-04-23T14:17:03Z"
author: ""
categories:
- hack
tags:
- hack
toc: true
thumbnail: ""
summary: ""
---# Introduction ...
```