From dce6b3b752909f601f3d97768d2748499883cb68 Mon Sep 17 00:00:00 2001 From: sakrecoer Date: Fri, 31 Jul 2026 01:10:32 +0200 Subject: [PATCH 1/2] fix the width on mobile --- themes/one-pager/assets/css/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/themes/one-pager/assets/css/style.css b/themes/one-pager/assets/css/style.css index cae7aea..8ef4dad 100644 --- a/themes/one-pager/assets/css/style.css +++ b/themes/one-pager/assets/css/style.css @@ -995,6 +995,7 @@ button { .header-text { text-align: center; + max-width: calc(100vw - 32px); } .profile-about { @@ -1006,6 +1007,7 @@ button { text-align: center; } + .profile-links { justify-content: center; } From 35e72338531810da02e5a64a9da3309bcc06107c Mon Sep 17 00:00:00 2001 From: sakrecoer Date: Fri, 31 Jul 2026 01:10:51 +0200 Subject: [PATCH 2/2] stop deleting inexistant jsonl --- fetch-and-convert.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/fetch-and-convert.sh b/fetch-and-convert.sh index a26a637..9043721 100755 --- a/fetch-and-convert.sh +++ b/fetch-and-convert.sh @@ -26,10 +26,7 @@ for kind in "${!KINDS[@]}"; do # Fetch and convert to JSON nak req -k "$kind" -a "$PUBKEY" "$RELAY" | jq -s '.' > "$DATA_DIR/$output.json" - - # Remove any existing .jsonl file in the same directory - rm -f "$DATA_DIR/$(dirname "$output")"/*.jsonl - + echo "Saved to $DATA_DIR/$output.json" done