From 60e4b78ca51e5a9817b9f7ad79500478032ae81f Mon Sep 17 00:00:00 2001 From: Nova Date: Sun, 20 Jun 2021 22:47:43 -0300 Subject: [PATCH] X-Bashblog --- README.md | 5 ++++- bb.sh | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a0f760d..8bd749b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ -bashblog +x-bashblog - a fork of bashblog adapted to xhtml-1.1 +======== + +readme for the original project is below this line ======== A single Bash script to create blogs. diff --git a/bb.sh b/bb.sh index c034922..948a8cf 100755 --- a/bb.sh +++ b/bb.sh @@ -939,9 +939,9 @@ create_includes() { if [[ -f $header_file ]]; then cp "$header_file" .header.html else { - echo '' - echo '' - echo '' + echo '' + echo '' + echo '' echo '' printf '\n' "${css_include[@]}" if [[ -z $global_feedburner ]]; then @@ -957,7 +957,7 @@ create_includes() { protected_mail=${global_email//@/@} protected_mail=${protected_mail//./.} echo "
$global_license $global_author$protected_mail
" - echo 'Generated with bashblog, a single bash script to easily create blogs like this one
' + echo 'Generated with X-bashblog (fork of bashblog), a single bash script to easily create blogs like this one' } >> ".footer.html" fi }