Skip to content

Commit

Permalink
Add description to every post
Browse files Browse the repository at this point in the history
  • Loading branch information
gamingrobot committed Dec 22, 2023
1 parent 1b58faf commit f4954c2
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions content/posts/c64-puzzle/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "Commodore 64 Puzzle"
description = "A fun Commodore 64 Puzzle"
date = 2020-02-27
slug = "c64-puzzle"
+++
Expand Down
1 change: 1 addition & 0 deletions content/posts/ctf-innoctf-2019/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "InnoCTF 2019 Writeups"
description = "Writeups for InnoCTF 2019"
date = 2019-07-19
slug = "ctf-innoctf-2019"
[taxonomies]
Expand Down
1 change: 1 addition & 0 deletions content/posts/ctf-peactf-2019/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "peaCTF 2019 Writeups"
description = "Writeups for peaCTF 2019"
date = 2019-07-26
slug = "ctf-peactf-2019"
[taxonomies]
Expand Down
1 change: 1 addition & 0 deletions content/posts/elf-shared-library-version.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "Embedding Version Info into ELF Shared Libraries"
description = "How-to embed version information into an ELF binary"
date = 2023-03-22
slug = "elf-shared-library-version"
[taxonomies]
Expand Down
1 change: 1 addition & 0 deletions content/posts/floating-point-hell.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "Floating Point Hell"
description = "Did you know JavaScript uses floats for all numbers?"
date = 2014-03-16
slug = "floating-point-hell"
[extra]
Expand Down
1 change: 1 addition & 0 deletions content/posts/homelab-adventure-part-1.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "Homelab Adventure - Part 1: The Adventure Begins"
description = "Homelab overview"
date = 2019-11-09
slug = "homelab-adventure-part-1"
[taxonomies]
Expand Down
1 change: 1 addition & 0 deletions content/posts/homelab-adventure-part-2.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "Homelab Adventure - Part 2: Configuration Management"
description = "Homelab configuration management with Salt"
date = 2020-02-06
slug = "homelab-adventure-part-2"
[taxonomies]
Expand Down
1 change: 1 addition & 0 deletions content/posts/homelab-adventure-part-3.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "Homelab Adventure - Part 3: Internal Network"
description = "Homelab internal networking with ZeroTier"
date = 2023-03-29
slug = "homelab-adventure-part-3"
[taxonomies]
Expand Down
1 change: 1 addition & 0 deletions content/posts/reaper-midi-unreal-engine/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "Sending MIDI from Reaper to Unreal Engine"
description = "How-to setup MIDI routing from Reaper to Unreal Engine"
date = 2022-04-11
slug = "reaper-midi-unreal-engine"
[taxonomies]
Expand Down
3 changes: 2 additions & 1 deletion content/posts/setup-qemu-for-arm-on-wheezy.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
+++
title = "Setup QEMU for ARM on Wheezy"
title = "Setup QEMU for ARM on Debian Wheezy"
description = "How-to setup QEMU for ARM on Debian Wheezy"
date = 2014-01-01
slug = "setup-qemu-for-arm-on-wheezy"
[taxonomies]
Expand Down
7 changes: 4 additions & 3 deletions themes/hyde-hyde-hyde-zola/static/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,10 @@ function makeTeaser(body, terms) {
}

function formatSearchResultItem(item) {
return '<div class="search-results__item">'
+ `<a href="${item.ref}"><span class="title">${item.doc.title}</span></a>`
+ '</div>';
console.log(item);
return '<span class=list__title--small>'
+ `<a href=${item.ref} />${item.doc.title} </a>`
+ '</span>';
}

function initSearch() {
Expand Down

0 comments on commit f4954c2

Please sign in to comment.