Refactor _blog_index function in qsgen2 script

- Change the debug message to use  instead of
- Update the echo command to use double quotes around

These changes improve the readability and consistency of the code.
This commit is contained in:
Stig-Ørjan Smelror 2024-02-12 21:53:26 +01:00
parent 7ce545e423
commit 0af7129cd5

4
qsgen2
View File

@ -917,9 +917,9 @@ function _blog_index() {
if (${debug}); then
_msg debug "_blog_index: Writing ${www_root}/blog/index.html"
_msg debug "_blog_index: Content of blog_index_content"
_msg info "${blog_index_content}"
_msg sub "${blog_index_content}"
fi
echo "${blog_index_content}" > ${www_root}/blog/index.html
echo "$blog_index_content" > ${www_root}/blog/index.html
_f_last_updated ${www_root}/blog/index.html
fi