Compare commits

...

3 Commits

Author SHA1 Message Date
8f378c2237
enable search 2023-11-15 22:56:26 +01:00
59fe04e1df
add taxonomies 2023-11-15 22:56:10 +01:00
c2e5fad0ec
enable tac within post 2023-11-15 22:06:56 +01:00
2 changed files with 18 additions and 3 deletions

View File

@ -5,12 +5,21 @@ base_url = "https://project-cloud.net"
compile_sass = true compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library # Whether to build a search index to be used later on by a JavaScript library
build_search_index = false build_search_index = true
theme = "DeepThought" theme = "DeepThought"
minify_html = true minify_html = true
taxonomies = [
{ name = "categories", feed = true, paginate_by = 10 },
{ name = "tags", feed = true, paginate_by = 10 },
]
[search]
include_title = true
include_description = false
include_path = false
include_content = true
[markdown] [markdown]
highlight_code = true highlight_code = true

View File

@ -1,5 +1,11 @@
+++ +++
title = "Using GPG Public Key" title = "Using GPG Public Key"
[taxonomies]
tags = ["gpg", "encryption"]
[extra]
toc = true
comments = false
+++ +++
GNU Privacy Guard (GPG) is an popular two factor encryption system often used for signing or encrypting emails, files or even git commits. GNU Privacy Guard (GPG) is an popular two factor encryption system often used for signing or encrypting emails, files or even git commits.