I have created a blog using octopress, I have made a dummy link instead of a page and pointed it to posts of some categories by editing the navigationbar :
<ul class="main-navigation">
<li><a href="{{ root_url }}/">Blog</a></li>
<li><a href="{{ root_url }}/blog/archives">Archives</a></li>
<li><a href="{{ root_url }}/about">About</a></li>
<li><a href="{{ root_url }}/blog/categories/python">Python101</a></li>
</ul>
The last link Python101
will show posts from category python only.
Now I want to hide all the posts only from python category on the index page. You can see the live site here bhansa.github.io
Is there any way I can do this?
Update: The above blog link is available no more.