Add post dates
This commit is contained in:
parent
0a24807933
commit
41ddbfe792
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Ancient Wormies modpack installation
|
||||
date: 2021-07-08 17:56 +0100
|
||||
---
|
||||
|
||||
# Using MultiMC
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Running a Jekyll website on Nix
|
||||
date: 2023-02-15 20:56 +0100
|
||||
---
|
||||
|
||||
If you're reading this on [technogothic.net](/) and the year is something like 2023, this site is probably generated by Jekyll.
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Setting up JACK with PulseAudio on ArchLinux
|
||||
date: 2021-06-15 19:44 +0100
|
||||
---
|
||||
|
||||
Add user to required groups:
|
||||
|
|
|
@ -41,10 +41,6 @@ h1 {
|
|||
font-size: 35px;
|
||||
}
|
||||
|
||||
h1::first-letter {
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
@ -195,6 +191,17 @@ a:hover {
|
|||
animation: glow 0.2s ease-in-out both;
|
||||
}
|
||||
|
||||
/* lists */
|
||||
|
||||
ol {
|
||||
list-style: upper-roman;
|
||||
}
|
||||
|
||||
/* No link markers in lists */
|
||||
.contents li a::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* animations */
|
||||
|
||||
@keyframes glow {
|
||||
|
|
Loading…
Reference in New Issue