From 64c0e87cea253fc68fe1a2516fb9ba74bdd94aec Mon Sep 17 00:00:00 2001 From: aditya Date: Sun, 18 Jun 2023 00:42:33 +0530 Subject: [PATCH 1/4] add license notice --- layouts/partials/footer/text.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/footer/text.html b/layouts/partials/footer/text.html index c356329..b95ecf4 100644 --- a/layouts/partials/footer/text.html +++ b/layouts/partials/footer/text.html @@ -4,7 +4,7 @@ {{ . | markdownify }} {{ else }} - {{ i18n "footer_text" . | markdownify }} + Creative Commons Licence
This work is licensed under a Creative Commons Attribution 4.0 International License
{{ end }} From 1fb0b47386f2ccaf557621fe9be3f839341da46a Mon Sep 17 00:00:00 2001 From: aditya Date: Sun, 18 Jun 2023 00:46:50 +0530 Subject: [PATCH 2/4] add source and copyright --- deploy.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 deploy.sh diff --git a/deploy.sh b/deploy.sh new file mode 100644 index 0000000..f6a7a72 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,8 @@ +#!/bin/sh +USER=user +HOST=adityakumar.xyz +DIR=/home/user/adityakumar.xyz + +hugo && rsync -Pavz --delete public/ ${USER}@${HOST}:${DIR} + +exit 0 From 36185f6927775b9b7e7de9eca03171d27042430f Mon Sep 17 00:00:00 2001 From: aditya Date: Sun, 18 Jun 2023 00:48:28 +0530 Subject: [PATCH 3/4] display correct license --- layouts/partials/footer/text.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/layouts/partials/footer/text.html b/layouts/partials/footer/text.html index b95ecf4..e43af28 100644 --- a/layouts/partials/footer/text.html +++ b/layouts/partials/footer/text.html @@ -4,7 +4,9 @@ {{ . | markdownify }} {{ else }} - Creative Commons Licence
This work is licensed under a Creative Commons Attribution 4.0 International License +

Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License

+

View Source

+

© 2023 ♥ Aditya Kumar

{{ end }} From 63350e64bdc9e6572c78bdad57e34e053d3c7b99 Mon Sep 17 00:00:00 2001 From: aditya Date: Sun, 18 Jun 2023 00:49:49 +0530 Subject: [PATCH 4/4] remove upload script --- deploy.sh | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 deploy.sh diff --git a/deploy.sh b/deploy.sh deleted file mode 100644 index f6a7a72..0000000 --- a/deploy.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -USER=user -HOST=adityakumar.xyz -DIR=/home/user/adityakumar.xyz - -hugo && rsync -Pavz --delete public/ ${USER}@${HOST}:${DIR} - -exit 0