I am using Craft only for the blog section of my HTML site. I have integrated my existing breadcrumbs to the blog, but there is a problem.
When I am on the home page of the blog, the word "Blog" in the breadcrumb is linked, and I would rather it not be linked.
I would like the word "Blog" in the breadcrumb to be a link only after going to an article on the blog. Please see attached.

The code I am using right now is
<ol class="breadcrumb">
<li><a href="/index.html">Home</a></li>
<li><a href="{{ siteUrl }}">Blog</a></li>
{% for crumb in entry.getAncestors() %}
<li>{{ crumb.getLink() }}</li>
{% endfor %}
<li>{{ entry.title() }}</li>
</ol>
I am new to Craft - thanks for your help!
entrylives in a structured section? – Brad Bell Mar 26 '15 at 20:12