Ghost Blog将类当前提供给页面的菜单项

mys*_*oul 2 html javascript css ghost-blog

有没有办法在Ghost Blog中为"活动"菜单项提供"当前"类.我需要提供当前类以突出显示当前菜单项.

以下仅适用于主页.

{{#if current}} nav-current{{/if}}
Run Code Online (Sandbox Code Playgroud)

谢谢.

小智 6

我也有同样的问题.可以在我的本地计算机上运行,​​但不能在使用Ghost 0.7.1的服务器上运行,无论哪个Node版本.所以这不是主题错误.

我联系了ghost slack频道的人,但是没有人回应这个话题.

所以我只是在客户端通过JS处理它.不是很好,但这对我有用,直到他们解决了这个问题.

$('.nav a').each(function() {
    if($(this).attr('href') == window.location.href) {
        $(this).addClass('current');
    }
});
Run Code Online (Sandbox Code Playgroud)