_pages: Let's generate the file

This commit is contained in:
Stig-Ørjan Smelror 2024-02-03 16:46:29 +01:00
parent d74be20752
commit b28e2f6e54

1
qsgen2
View File

@ -414,6 +414,7 @@ function _pages() {
# Insert the blog to the front page is blog_in_index is true and the file in the array is index.file_ext
# and if index.tmp.html exist and is not empty
if [[ ${pages_in_array} == "index.${file_ext}" && ${blog_in_index} == "true" && -s ${project_dir}/blog/index.tmp.html ]]; then
_blog_idx_for_index
local blog_index_file=$(<${project_dir}/blog/index.tmp.html)
pages_tpl=$( awk -v new_blog="$blog_index_file" '{sub(/BLOGINDEX/, new_blog)} 1' <(echo "${pages_tpl}") )
else