I’m using the Chirpy theme for my Jekyll site and want to hide “Tags” and “Categories” from the top navigation menu. However, I still need the /categories/
and /tags/
pages to remain active to link to them from other parts of my site.
For example, I’d like to include links to these pages on my “Archives” or “All Posts” page, like this:
Browse by:
<strong><a href="{{ base_path }}/categories/">
<i class="fa fa-fw fa-folder-open" aria-hidden="true"></i> Categories
</a></strong>
<strong><a href="{{ base_path }}/tags/">
<i class="fa fa-fw fa-tags" aria-hidden="true"></i> Tags
</a></strong>
<strong><a href="{{ base_path }}/archives/">
<i class="fa fa-fw fa-calendar" aria-hidden="true"></i> Year
</a></strong>
How can I achieve this without breaking the functionality of the “Tags” and “Categories” pages? Any advice on improving the design of the links for better aesthetics is also appreciated.