2019-08-15 11:28:39 +00:00
|
|
|
= blog
|
|
|
|
|
2020-11-06 22:16:12 +00:00
|
|
|
My blog featuring a fairly customized version of https://github.com/foo-dogsquared/hugo-theme-more-contentful/[my More Contentful Hugo theme].
|
2019-08-15 11:28:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-05 04:34:37 +00:00
|
|
|
== Getting started
|
2019-08-15 11:28:39 +00:00
|
|
|
|
2020-11-06 22:16:12 +00:00
|
|
|
Though, it's obvious but then again, you may not remember how to do well in a year.
|
2019-08-15 11:28:39 +00:00
|
|
|
|
|
|
|
|
2020-11-05 04:34:37 +00:00
|
|
|
=== Prerequisites
|
2019-08-15 11:28:39 +00:00
|
|
|
|
2020-11-05 04:34:37 +00:00
|
|
|
* Git
|
|
|
|
* Hugo
|
|
|
|
* https://golang.org/[Go] runtime
|
|
|
|
* https://asciidoctor.org/[Asciidoctor]
|
2020-11-06 22:16:12 +00:00
|
|
|
* https://git.sr.ht/~sircmpwn/openring/[openring] (you can easily compile one yourself with the Go toolchain)
|
2020-11-05 04:34:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
=== Setting up
|
|
|
|
|
|
|
|
[source, shell]
|
|
|
|
----
|
|
|
|
git clone $GIT_REPO
|
|
|
|
hugo mod get -u
|
|
|
|
hugo serve
|
|
|
|
----
|
|
|
|
|
|
|
|
The theme is a modified version of a https://github.com/foo-dogsquared/hugo-theme-more-contentful[modified version of a theme] so that's pretty cool.
|
|
|
|
|
|
|
|
To create a post, simply make with `hugo new --kind post $PATH_REL_TO_CONTENT_DIR` and you're on your merry way.
|
2019-08-15 11:28:39 +00:00
|
|
|
|