fixed asciidoc admonitions.
This commit is contained in:
parent
52e49beff6
commit
9041aafcfd
12
archetypes/default.adoc
Normal file
12
archetypes/default.adoc
Normal file
|
@ -0,0 +1,12 @@
|
|||
+++
|
||||
title = "{{ replace .Name "-" " " | title }}"
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
||||
:caution-caption: pass:[<span style="font-size: 2em">☠</span>]
|
||||
:important-caption: pass:[<span style="font-size: 2em">❗</span>]
|
||||
:note-caption: pass:[<span style="font-size: 2em">✏️</span>]
|
||||
:tip-caption: pass:[<span style="font-size: 2em">💡</span>]
|
||||
:warning-caption: pass:[<span style="font-size: 2em">⚠</span>]
|
||||
:toc:
|
||||
:toclevels: 6
|
|
@ -8,7 +8,7 @@ showToc = false
|
|||
|
||||
Im Gabe Venberg.
|
||||
|
||||
Professionally, Im a newly minted computer scientist, with interest in embedded software, OS development (and anything backend, really), and strongly typed languages 🦀.
|
||||
Professionally, Im a newly minted computer scientist, with interest in embedded software, OS development (and anything backend, really), and strongly typed languages (🦀).
|
||||
|
||||
_Unprofessionally_, Im a general nerd, ever tinkering on my 3d printer, learning basic electrical engineering, managing my self-hosted cloud, and reading *_way_* too many sci-fi books.
|
||||
|
||||
|
|
|
@ -3,8 +3,13 @@ title = "Archlinux install with btrfs, systemd-boot, and full-disk encryption"
|
|||
date = 2021-04-11T19:19:51-05:00
|
||||
draft = false
|
||||
+++
|
||||
:caution-caption: pass:[<span style="font-size: 2em">☠</span>]
|
||||
:important-caption: pass:[<span style="font-size: 2em">❗</span>]
|
||||
:note-caption: pass:[<span style="font-size: 2em">✏️</span>]
|
||||
:tip-caption: pass:[<span style="font-size: 2em">💡</span>]
|
||||
:warning-caption: pass:[<span style="font-size: 2em">⚠</span>]
|
||||
:toc:
|
||||
:toclevels: 4
|
||||
:toclevels: 6
|
||||
|
||||
== Installing btrfs, systemd-boot, and LUKS with suspend to disk on encrypted swap partition.
|
||||
|
||||
|
@ -48,7 +53,7 @@ Anyway, start by booting up the arch ISO...
|
|||
Sometimes, you dont want to be switching from the computer you are installing linux on and the computer with the documentation and a search engine on it,
|
||||
and Ive found the best way to avoid that is to set up a simple ssh session from the arch ISO to the computer with the documentation on it.
|
||||
|
||||
[IMPORTANT]
|
||||
[WARNING]
|
||||
====
|
||||
On a normal, already installed machine, *NEVER* use just a password for SSH. *ESPECIALLY* if it is internet-facing or connected to a public network.
|
||||
We are only doing this because we are (hopefully) on a personal network, and the password-based SSH session only exists on the Arch ISO, so as soon as you boot into your fresh system, the SSH session will be gone.
|
||||
|
|
|
@ -3,6 +3,11 @@ title = "Mapping caps lock to ctrl in the TTY"
|
|||
date = 2021-05-23T04:59:28-05:00
|
||||
draft = false
|
||||
+++
|
||||
:caution-caption: pass:[<span style="font-size: 2em">☠</span>]
|
||||
:important-caption: pass:[<span style="font-size: 2em">❗</span>]
|
||||
:note-caption: pass:[<span style="font-size: 2em">✏️</span>]
|
||||
:tip-caption: pass:[<span style="font-size: 2em">💡</span>]
|
||||
:warning-caption: pass:[<span style="font-size: 2em">⚠</span>]
|
||||
:toc:
|
||||
:toclevels: 4
|
||||
|
||||
|
|
18
hugo.toml
18
hugo.toml
|
@ -5,8 +5,8 @@ enableRobotsTXT = true
|
|||
|
||||
[params]
|
||||
env = 'production'
|
||||
title = 'ExampleSite'
|
||||
description = "ExampleSite description"
|
||||
title = 'Mildly interesting'
|
||||
description = "Mildly interesting Things ive Done"
|
||||
author = 'Gabe Venberg'
|
||||
DateFormat = "2006-1-2"
|
||||
defaultTheme = 'dark'
|
||||
|
@ -33,7 +33,7 @@ mainSections = ['posts', 'docs']
|
|||
disableHLJS = true
|
||||
|
||||
[params.homeInfoParams]
|
||||
Title = "Gabe Venberg"
|
||||
Title = "Mildly Interesting"
|
||||
Content = """
|
||||
Mildly interesting things Ive done.
|
||||
"""
|
||||
|
@ -58,23 +58,23 @@ weight = 1
|
|||
[[menu.main]]
|
||||
name = "Resume"
|
||||
url = "resume"
|
||||
weight = 1
|
||||
weight = 2
|
||||
|
||||
[[menu.main]]
|
||||
name = "Archive"
|
||||
url = "archives"
|
||||
weight = 2
|
||||
weight = 3
|
||||
|
||||
[[menu.main]]
|
||||
name = "Search"
|
||||
url = "search"
|
||||
weight = 3
|
||||
weight = 4
|
||||
|
||||
[params.profileMode]
|
||||
enabled = false
|
||||
title = "Gabe Venberg"
|
||||
title = "Mildly Interesting"
|
||||
imageUrl = "#"
|
||||
imageTitle = "Gabe Venberg"
|
||||
imageTitle = "TODO"
|
||||
|
||||
[[params.profileMode.buttons]]
|
||||
name = "About"
|
||||
|
@ -114,7 +114,7 @@ startLevel = 2
|
|||
|
||||
|
||||
[security]
|
||||
enableInlineShortcodes = false
|
||||
enableInlineShortcodes = true
|
||||
|
||||
[security.exec]
|
||||
allow = ["^dart-sass-embedded$", "^go$", "^npx$", "^postcss$", "^asciidoctor$"]
|
||||
|
|
Loading…
Reference in a new issue