fix: link path in nav_tabs_blog.ejs (#508)
This commit is contained in:
parent
ba163fad80
commit
99ae3b1a48
|
@ -11,37 +11,37 @@ function layoutDiv() {
|
||||||
|
|
||||||
if (site.categories && site.categories.length > 0) {
|
if (site.categories && site.categories.length > 0) {
|
||||||
if (page.category) {
|
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") {
|
} 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 {
|
} 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 (site.tags && site.tags.length > 0) {
|
||||||
if (page.tag) {
|
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") {
|
} 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 {
|
} 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 (theme.topic?.publish_list?.length > 0) {
|
||||||
if (page.layout == 'index_topic') {
|
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 {
|
} 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 (site.posts && site.posts.length > 0) {
|
||||||
if (is_archive()) {
|
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 {
|
} else {
|
||||||
el += '<a href="' + url_for(config.archive_dir) + '">' + __("btn.archives") + '</a>';
|
el += '<a href="' + url_for(config.archive_dir) + '/">' + __("btn.archives") + '</a>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue