Compare commits
11 Commits
6873fb66dd
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
eab712e421
|
|||
|
ad6af66a61
|
|||
|
88ce25f6b4
|
|||
|
be545b5225
|
|||
|
7b4ff3bad1
|
|||
|
76240e342c
|
|||
|
8f378c2237
|
|||
|
59fe04e1df
|
|||
|
c2e5fad0ec
|
|||
|
72ed4edcfe
|
|||
|
086a0f8f71
|
24
config.toml
24
config.toml
@@ -1,27 +1,41 @@
|
|||||||
# The URL the site will be built for
|
# The URL the site will be built for
|
||||||
base_url = "https://project-cloud.net"
|
base_url = "https://project-cloud.net"
|
||||||
|
title = "project-cloud"
|
||||||
|
description = "Cloud and blog platform for personal and consulting projects."
|
||||||
|
|
||||||
# Whether to automatically compile all Sass files in the sass directory
|
# Whether to automatically compile all Sass files in the sass directory
|
||||||
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
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
list_pages = true
|
list_pages = true
|
||||||
|
toc = true
|
||||||
|
katex.enabled = true
|
||||||
|
katex.auto_render = true
|
||||||
navbar_items = [
|
navbar_items = [
|
||||||
{ code = "en", nav_items = [
|
{ code = "en", nav_items = [
|
||||||
{ url = "/", name = "/home/"},
|
{ url = "/", name = "/home/"},
|
||||||
{ url = "/posts", name = "/posts/"},
|
{ url = "/posts", name = "/posts/"},
|
||||||
{ url = "https://git.project-cloud.net", name = "/git/"},
|
{ url = "https://git.project-cloud.net", name = "/git/"},
|
||||||
{ url = "https://cloud.project-cloud.net", name = "/cloud/"}
|
#{ url = "https://cloud.project-cloud.net", name = "/cloud/"}
|
||||||
]},
|
]},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -30,4 +44,4 @@ navbar_items = [
|
|||||||
# Author details
|
# Author details
|
||||||
[extra.author]
|
[extra.author]
|
||||||
name = "Asmir Abdulahovic"
|
name = "Asmir Abdulahovic"
|
||||||
avatar = "/images/my_avatar.png"
|
avatar = "images/my_avatar.webp"
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir $out
|
mkdir $out
|
||||||
cp -r public/ $out/
|
cp -r public/ $out/
|
||||||
|
cat goatcounter.url >> $out/public/index.html
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|||||||
1
goatcounter.url
Normal file
1
goatcounter.url
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<script data-goatcounter="https://stats.project-cloud.net/count" async src="//stats.project-cloud.net/count.js"></script>
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 11 KiB |
BIN
static/images/my_avatar.webp
Normal file
BIN
static/images/my_avatar.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.8 KiB |
Reference in New Issue
Block a user