Skip to content

Commit ee796aa

Browse files
committed
Update tags, move shortcodes
1 parent 68a82d3 commit ee796aa

11 files changed

Lines changed: 66 additions & 54 deletions

File tree

content/posts/elf-shared-library-version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "How-to embed version information into an ELF binary"
44
date = 2023-03-22
55
slug = "elf-shared-library-version"
66
[taxonomies]
7-
tags = ["Linux"]
7+
tags = ["Linux", "Code"]
88
+++
99

1010
*How to embed version information into an ELF shared library?*

content/posts/floating-point-hell.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title = "Floating Point Hell"
33
description = "Did you know JavaScript uses floats for all numbers?"
44
date = 2014-03-16
55
slug = "floating-point-hell"
6+
[taxonomies]
7+
tags = ["Code"]
68
[extra]
79
hide_toc = true
810
+++

content/posts/home-assistant-dashboard-tablet/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Setting up a Lenovo Tablet 10 as a Home Assistant dashboard and v
44
date = 2024-05-27
55
slug = "home-assistant-dashboard-tablet"
66
[taxonomies]
7-
tags = ["Home Assistant"]
7+
tags = ["Linux", "Home Assistant"]
88
[extra]
99
image = "tablet_small.webp"
1010
+++

content/posts/homelab-adventure-part-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Homelab overview"
44
date = 2019-11-09
55
slug = "homelab-adventure-part-1"
66
[taxonomies]
7-
tags = ["Homelab"]
7+
tags = ["Linux", "Homelab"]
88
+++
99

1010
Welcome to my journey in building my homelab. This will be an ongoing series of blog posts of my adventures in building my personal infrastructure.

content/posts/homelab-adventure-part-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Homelab configuration management with Salt"
44
date = 2020-02-06
55
slug = "homelab-adventure-part-2"
66
[taxonomies]
7-
tags = ["Homelab"]
7+
tags = ["Linux", "Homelab"]
88
+++
99

1010
Welcome to my journey in building my homelab. This is part of a multipart series, in the last part I gave an overview of the homelab plan. This one will cover how I handle configuration management.

content/posts/homelab-adventure-part-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Homelab internal networking with ZeroTier"
44
date = 2023-03-29
55
slug = "homelab-adventure-part-3"
66
[taxonomies]
7-
tags = ["Homelab"]
7+
tags = ["Linux", "Homelab"]
88
+++
99

1010
Welcome to my journey in building my homelab. This is part of a multipart series, in the last part I gave an overview of how to do configuration management. This one will cover how I set up my internal network.

content/posts/homelab-switching-salt-to-ansible.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Switching my Homelab from Salt to Ansible"
44
date = 2024-03-20
55
slug = "homelab-switching-salt-to-ansible"
66
[taxonomies]
7-
tags = ["Homelab"]
7+
tags = ["Linux", "Homelab"]
88
+++
99

1010
About a month ago I thought it would be nice to be able to configure VM's and Droplets with Salt by using my existing configuration I had setup in [Part 2: Configuration Management](@/posts/homelab-adventure-part-2.md).

themes/doingstuff-zola/sass/doingstuff.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
@import 'doingstuff/mixins';
33
@import 'doingstuff/base';
44
@import 'doingstuff/topbar';
5+
@import 'doingstuff/shortcodes';
56
@import 'doingstuff/about';
67
@import 'doingstuff/list';
78
@import 'doingstuff/post';

themes/doingstuff-zola/sass/doingstuff/_base.scss

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -172,54 +172,6 @@ blockquote {
172172
top: 6px;
173173
}
174174

175-
.tip {
176-
color: #2e2e2ec4;
177-
background-color: #7bf79033;
178-
border-left-color: #03b303;
179-
@extend %notebox;
180-
}
181-
182-
.tip-icon {
183-
color: #03b303;
184-
@extend %noteicon;
185-
}
186-
187-
.info {
188-
color: #2e2e2ec4;
189-
background-color: #e1f5fe;
190-
border-left-color: #0070cb;
191-
@extend %notebox;
192-
}
193-
194-
.info-icon {
195-
color: #0070cb;
196-
@extend %noteicon;
197-
}
198-
199-
.warning {
200-
color: #2e2e2ec4;
201-
background-color: #fff3cd;
202-
border-left-color: #ef9c03;
203-
@extend %notebox;
204-
}
205-
206-
.warning-icon {
207-
color: #ef9c03;
208-
@extend %noteicon;
209-
}
210-
211-
.danger {
212-
color: #2e2e2ec4;
213-
background-color: #f8d7da8f;
214-
border-left-color: #df3c30;
215-
@extend %notebox;
216-
}
217-
218-
.danger-icon {
219-
color: #df3c30;
220-
@extend %noteicon;
221-
}
222-
223175
kbd {
224176
font-family: $root-font-family;
225177
padding: 2px 7px;
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
.tip {
2+
color: #2e2e2ec4;
3+
background-color: #7bf79033;
4+
border-left-color: #03b303;
5+
@extend %notebox;
6+
}
7+
8+
.tip-icon {
9+
color: #03b303;
10+
@extend %noteicon;
11+
}
12+
13+
.info {
14+
color: #2e2e2ec4;
15+
background-color: #e1f5fe;
16+
border-left-color: #0070cb;
17+
@extend %notebox;
18+
}
19+
20+
.info-icon {
21+
color: #0070cb;
22+
@extend %noteicon;
23+
}
24+
25+
.warning {
26+
color: #2e2e2ec4;
27+
background-color: #fff3cd;
28+
border-left-color: #ef9c03;
29+
@extend %notebox;
30+
}
31+
32+
.warning-icon {
33+
color: #ef9c03;
34+
@extend %noteicon;
35+
}
36+
37+
.danger {
38+
color: #2e2e2ec4;
39+
background-color: #f8d7da8f;
40+
border-left-color: #df3c30;
41+
@extend %notebox;
42+
}
43+
44+
.danger-icon {
45+
color: #df3c30;
46+
@extend %noteicon;
47+
}
48+
49+
video {
50+
max-width: 100%;
51+
}

0 commit comments

Comments
 (0)