kirk-rage

Just Build Me A Fucking Page

I am just so sick of all these complicated static site generators forcing you to care about taxonomies and shit like this. All I want is to have a bunch of markdown files and let them use specific templates. That is about it. Nothing fancy!

This generator is not for people who need something more complicated. Use Hugo instead. But if you need a simple blog page that needs to spit out an RSS feed or two and have the option to define different templates for different posts, well then this might be useful to you.

The only thing hard about this project is the spelling of its name.

Some facts (will be more clear when you read the whole readme):

Install

git clone git@github.com:mitjafelicijan/jbmafp.git
cd jbmafp
go install .

Generate first site

mkdir my-shitty-website
cd my-shitty-website
jbmafp --init
jbmafp --build

Understanding all this bullshit

---
title: "My first post"
url: first.html
date: 2023-06-29T14:51:39+02:00
type: post
draft: false
---

This is my first post. It ain't much but it's an honest post.

Entities available in template

Config

Config {
  Title        string
  Description  string
  BaseURL      string
  Language     string
  Highlighting string
  Minify       bool
}

Using it inside of a template.

<div>{{ .Config.Language }}</div>

Page

Page {
  Filepath     string
  Raw          string
  HTML         template.HTML
  Text         string
  Summary      string
  Meta         map[string]interface{}
  Title        string
  RelPermalink string
  Type         string
  Created      time.Time
  Draft        bool
}

Using it inside of a template.

{{ range .Pages }}
  {{ if eq .Type "post" }}
    <li>
      <a href="/{{ .RelPermalink }}">{{ .Title }}</a>
      <div>{{ .Created.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div>
    </li>
  {{ end }}
{{ end }}

That .Format shenanigas are used for formatting time.Time type. You can read more about it on https://gosamples.dev/date-time-format-cheatsheet/.

Payload available on page generation

Payload {
  Config
  Page
  Pages
}

Special filters

<!-- First 10 pages -->
{{ range .Pages | first 10 }}
  {{ if and (eq .Type "post") (not .Draft) }}
    <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  {{ end }}
{{ end }}

<!-- Last 10 pages -->
{{ range .Pages | last 10 }}
  {{ if and (eq .Type "post") (not .Draft) }}
    <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  {{ end }}
{{ end }}

<!-- Random 10 pages -->
{{ range .Pages | random 10 }}
  {{ if and (eq .Type "post") (not .Draft) }}
    <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  {{ end }}
{{ end }}

<!-- Filter by type -->
{{ range .Pages | filterbytype "post" }}
  {{ if not .Draft }}
    <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  {{ end }}
{{ end }}

<!-- Chain multiple together -->
{{ range .Pages | filterbytype "post" | random 20 | first 5 }}
  {{ if not .Draft }}
    <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  {{ end }}
{{ end }}

Additional material

License

jbmafp was written by Mitja Felicijan and is released under the BSD zero-clause license, see the LICENSE file for more information.