I'm not sure if questions about Cover generator templates are appropriate here, but here is my question:
I'd like add an extra line in the footer showing the publish date (pubdate) in a smaller font.
The current footer template is this (it shows up to two authors):
Code:
program:
# Show at most two authors, on separate lines.
authors = field('authors');
num = count(authors, ' & ');
authors = sublist(authors, 0, 2, ' & ');
authors = list_re(authors, ' & ', '(.+)', '<b>\1');
authors = re(authors, ' & ', '<br>');
re(authors, '&&', '&')
What code would I have to add? Thanks for any help.