fix: link path in nav_tabs_blog.ejs (#508)

This commit is contained in:
纸鹿/Zhilu 2024-08-13 16:22:22 +08:00 committed by GitHub
parent ba163fad80
commit 99ae3b1a48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 10 deletions

View File

@ -11,37 +11,37 @@ function layoutDiv() {
if (site.categories && site.categories.length > 0) {
if (page.category) {
el += '<a class="active" href="' + url_for(config.category_dir) + '">' + __("btn.category") + __("symbol.colon") + page.category + '</a>';
el += '<a class="active" href="' + url_for(config.category_dir) + '/">' + __("btn.category") + __("symbol.colon") + page.category + '</a>';
} else if (page.layout == "categories") {
el += '<a class="active" href="' + url_for(config.category_dir) + '">' + __("btn.categories") + '</a>';
el += '<a class="active" href="' + url_for(config.category_dir) + '/">' + __("btn.categories") + '</a>';
} else {
el += '<a href="' + url_for(config.category_dir) + '">' + __("btn.categories") + '</a>';
el += '<a href="' + url_for(config.category_dir) + '/">' + __("btn.categories") + '</a>';
}
}
if (site.tags && site.tags.length > 0) {
if (page.tag) {
el += '<a class="active" href="' + url_for(config.tag_dir) + '">' + __("btn.tag") + __("symbol.colon") + page.tag + '</a>';
el += '<a class="active" href="' + url_for(config.tag_dir) + '/">' + __("btn.tag") + __("symbol.colon") + page.tag + '</a>';
} else if (page.layout == "tags") {
el += '<a class="active" href="' + url_for(config.tag_dir) + '">' + __("btn.tags") + '</a>';
el += '<a class="active" href="' + url_for(config.tag_dir) + '/">' + __("btn.tags") + '</a>';
} else {
el += '<a href="' + url_for(config.tag_dir) + '">' + __("btn.tags") + '</a>';
el += '<a href="' + url_for(config.tag_dir) + '/">' + __("btn.tags") + '</a>';
}
}
if (theme.topic?.publish_list?.length > 0) {
if (page.layout == 'index_topic') {
el += '<a class="active" href="' + url_for(theme.site_tree.index_topic.base_dir) + '">' + __("btn.topic") + '</a>';
el += '<a class="active" href="' + url_for(theme.site_tree.index_topic.base_dir) + '/">' + __("btn.topic") + '</a>';
} else {
el += '<a href="' + url_for(theme.site_tree.index_topic.base_dir) + '">' + __("btn.topic") + '</a>';
el += '<a href="' + url_for(theme.site_tree.index_topic.base_dir) + '/">' + __("btn.topic") + '</a>';
}
}
if (site.posts && site.posts.length > 0) {
if (is_archive()) {
el += '<a class="active" href="' + url_for(config.archive_dir) + '">' + __("btn.archives") + '</a>';
el += '<a class="active" href="' + url_for(config.archive_dir) + '/">' + __("btn.archives") + '</a>';
} else {
el += '<a href="' + url_for(config.archive_dir) + '">' + __("btn.archives") + '</a>';
el += '<a href="' + url_for(config.archive_dir) + '/">' + __("btn.archives") + '</a>';
}
}