diff --git a/themes/chameleon/layout/_partial/head.ejs b/themes/chameleon/layout/_partial/head.ejs index dec3b60..726d9c0 100644 --- a/themes/chameleon/layout/_partial/head.ejs +++ b/themes/chameleon/layout/_partial/head.ejs @@ -1,36 +1,36 @@
- <% - let title = page.title +<% +let title = page.title - if (is_archive()) { - title = titleCase(config.archive_dir) +if (is_archive()) { + title = titleCase(config.archive_dir) - if (is_month()) { - title += ': ' + page.year + '/' + page.month - } else if (is_year()) { - title += ': ' + page.year - } else if (page.current_url) { - const pageNum = Number(page.current_url.charAt(page.current_url.length - 2)) - if (Number.isInteger(pageNum)) title += ': Page ' + pageNum - } - } else if (is_category()) { - title = __('category') + ': ' + page.category - } else if (is_tag()) { - title = __('tag') + ': ' + page.tag + if (is_month()) { + title += ': ' + page.year + '/' + page.month + } else if (is_year()) { + title += ': ' + page.year + } else if (page.current_url) { + const pageNum = Number(page.current_url.charAt(page.current_url.length - 2)) + if (Number.isInteger(pageNum)) title += ': Page ' + pageNum } - %> +} else if (is_category()) { + title = __('category') + ': ' + page.category +} else if (is_tag()) { + title = __('tag') + ': ' + page.tag +} +%>