-
-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
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
Tags header generates twice #228
Comments
Have you come up with a solution? |
I solved it by commenting the hardcoded "Tags" header from the header file. The overall header generation is such that when a new folder is being created, it is given a separate header. So when we compile the project we get a "blog" folder and also a "tags" folder. So the header generation is such that we get both the dynamic and static headers. Removing the Tags(hardcoded link): <ul>
{{#nav-categories}}
<li><a href="{{category-uri}}">{{category-name}}</a></li>
{{/nav-categories}}
<!--
<li><a href="/tags/">Tags</a></li>
-->
<li><a href="/about/">About</a></li>
<li><a href="{{github}}">GitHub</a></li>
<li><a href="/rss.xml">RSS</a></li>
</ul> Now compile the project, you won't get multiple "Tags" header. |
I am unable to reproduce this. |
Hello,
I've noticed that, when I do an "op/do-publication", most everything works, but the "Tags" header generates twice (two Tags items at the top of the page, both leading to the same place). I haven't figured out why this is and would rather not have to manually remove that second Tag link every time. What am I doing wrong, if anything? It's been pretty frustrating trying to work around it.
The text was updated successfully, but these errors were encountered: