So next you would extend your urls.py
to look something like this:
url(r'^$', 'index', name='index'),
url(r'^blog$', 'blog', name='blog'),
Then in your html you can use either one:
Home
Blog
You can of course use the template tage {% url 'index' %}
as many times as you need in any template.