Compare commits

..

11 Commits

Author SHA1 Message Date
eab712e421 config: disable /cloud/ link 2024-10-16 13:14:49 +02:00
ad6af66a61 goatcounter: add script tag to index.html 2024-01-21 21:52:06 +01:00
88ce25f6b4 avatar: change color tone to be visible with dark theme 2023-11-17 20:16:39 +01:00
be545b5225 add description 2023-11-15 23:33:27 +01:00
7b4ff3bad1 add title 2023-11-15 23:28:22 +01:00
76240e342c avatart convert from png to webp 2023-11-15 23:17:50 +01:00
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
72ed4edcfe enable katex 2023-11-15 22:04:06 +01:00
086a0f8f71 enable toc 2023-11-15 22:02:11 +01:00
6 changed files with 27 additions and 5 deletions

View File

@@ -1,27 +1,41 @@
# The URL the site will be built for
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
compile_sass = true
# 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"
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]
highlight_code = true
[extra]
list_pages = true
toc = true
katex.enabled = true
katex.auto_render = true
navbar_items = [
{ code = "en", nav_items = [
{ url = "/", name = "/home/"},
{ url = "/posts", name = "/posts/"},
{ 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
[extra.author]
name = "Asmir Abdulahovic"
avatar = "/images/my_avatar.png"
avatar = "images/my_avatar.webp"

View File

@@ -1,5 +1,11 @@
+++
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.

View File

@@ -39,6 +39,7 @@
installPhase = ''
mkdir $out
cp -r public/ $out/
cat goatcounter.url >> $out/public/index.html
'';
};
in {

1
goatcounter.url Normal file
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB