A simple, fully-featured Hugo blogging theme with Dracula colors
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
earnest ma 9cb8b88c29
feat! Bump minimum Hugo version to 0.88.1
1 year ago
assets feat: Add support for comments from Mastodon posts (API) 2 years ago
exampleSite chore: Update docs 1 year ago
images docs: Add exampleSite and theme metadata 2 years ago
layouts chore(deps): Bump DOMPurify to version 2.2.7 2 years ago
.editorconfig chore: Add .editorconfig file 2 years ago
.gitignore chore: Update docs 1 year ago
changelog.md chore: Update changelog for v0.3.2 2 years ago
contributing.md chore: Update docs 1 year ago
license chore: Update docs 1 year ago
openring-template-in.html feat: Add openring incoming template example 2 years ago
readme.md chore: Update docs 1 year ago
theme.toml feat! Bump minimum Hugo version to 0.88.1 1 year ago
version chore: Bump version to 0.3.2 2 years ago

readme.md

Dracublog

git repo

A simple, fully-featured Hugo blogging theme with Dracula colors.

Features:

  • Basic support for Gemini output
  • Full content RSS feed by default
  • Support for author/ multi-author posts
  • Support for "comments" through Mastodon's API (toot)
  • Optional openring styling (generates a list of recent posts from blogs you follow)
  • noindex param to prevent certain pages from being indexed

Install

Tarball

  • Version: https://git.earne.link/earnestma/dracublog/archive/$VERSION.tar.gz
  • Main branch: https://git.earne.link/earnestma/dracublog/archive/main.tar.gz

You can add themes/dracublog to .gitignore, and extract it there.

Through a git submodule

git submodule add https://git.earne.link/earnestma/dracublog.git themes/dracublog

Configuration

Gemini Output

Improvements welcome.

config.toml:

[mediaTypes]
[mediaTypes."text/gemini"]
suffixes = ["gmi"]

[outputFormats]
[outputFormats.Gemini]
name = "GEMTEXT"
isPlainText = true
isHTML = false
mediaType = "text/gemini"
protocol = "gemini://"
permalinkable = true
path = "gemini/"

[outputs]
section = ["HTML", "RSS"]

Blog posts (post-filename.md):

A post that has both html and gemini output:

title: "Example"
date: 2020-01-01 13:23:00 -0500
draft: false
outputs:
  - html
  - gemtext

Just gemini:

outputs:
  - gemtext

Gemini content will go in the same post-filename.gmi. A Makefile or automated CI can be used to transfer output and exclude certain files/ directories to the correct directories.

Contributing

Please see contributing.md. This project is licensed under the MIT License.

Thanks