We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NexT Version:
NexT Scheme:
看了下是sidebar.swig的代码逻辑有点小问题。71行开始的代码:
sidebar.swig
<div class="links-of-author motion-element"> {% if theme.social %} {% for name, link in theme.social %} <span class="links-of-author-item"> <a href="{{ link }}" target="_blank"> {% if theme.social_icons.enable %} <i class="fa fa-{{ theme.social_icons[name] || 'globe' }}"></i> {{ name }} {% endif %} </a> </span> {% endfor %} {% endif %} </div>
一旦false了,name也就没了。所以将name移出if判断即可。 已提交PR
name
if判断
The text was updated successfully, but these errors were encountered:
我看之前有人提到过这个bug: #525
Sorry, something went wrong.
已 Merge,谢谢
No branches or pull requests
Expected behavior (预期行为)
Actual behavior (实际行为)
Steps to reproduce the behavior (重现步骤)
NexT Version, NexT Scheme
NexT Version:
NexT Scheme:
Other Information (Like Browser, System, Screenshots)
看了下是
sidebar.swig
的代码逻辑有点小问题。71行开始的代码:一旦false了,name也就没了。所以将
name
移出if判断
即可。已提交PR
The text was updated successfully, but these errors were encountered: