Working on _blog_idx_for_index

This commit is contained in:
Stig-Ørjan Smelror 2024-01-30 14:28:30 +01:00
parent b817e88a76
commit e91e96df9a

3
qsgen2
View File

@ -556,6 +556,7 @@ if [[ ${updated_blogs} = "true" ]]; then
local url="" local url=""
# Iterate over each component and extract information # Iterate over each component and extract information
if (${debug}) echo "${red}_blog_idx_for_index: Iterate over each component and extract information${end}"
for component in "${meta_array[@]}"; do for component in "${meta_array[@]}"; do
case "${component}" in case "${component}" in
SDATE:*) sdate=${component#SDATE: } ;; SDATE:*) sdate=${component#SDATE: } ;;
@ -572,6 +573,8 @@ if [[ ${updated_blogs} = "true" ]]; then
blog_list_content=$(echo "${blog_list_content}" | perl -pe "s|BLOGDATE|${bdate}|g") blog_list_content=$(echo "${blog_list_content}" | perl -pe "s|BLOGDATE|${bdate}|g")
done done
if (${debug}) echo "${red}_blog_idx_for_index: Writing _blog_idx_for_index to file: ${project_dir}/blog/index.tmp.html${end}"
if (${debug}) echo "${red}_blog_idx_for_index: blog_list_content = ${blog_list_content}${end}"
echo ${blog_list_content} >> ${project_dir}/blog/index.tmp.html echo ${blog_list_content} >> ${project_dir}/blog/index.tmp.html
done done
fi fi