I am implementing a portal for my department and have most of it working however it seems that the Web Links in my Footer are not clickable as links. They are External URLs but I tested with making a link to a Web Page for the portal and that no longer work either.
I can't determine if it is a problem with the Content Snippets, Web Link Sets, or the Web Templates. My gut tells me it is the Web Template for the Footer. I'm going to post that and see if any of you can spot why the names of the Web Links in the Web Link Set appear but are un-clickable.
<footer role="contentinfo"><div class="footer-top"><div class="container"><div class="row"><div class="col-md-6 col-sm-12 col-xs-12 text-left"> {% editable snippets 'About Footer' type: 'html' %}</div></div></div></div><div class="footer-bottom hidden-xs hidden-sm"><div class="container"><div class="row"><div class="col-md-4 col-sm-12 col-xs-12 text-left"> {% editable snippets 'Footer' type: 'html' %}</div> {% assign footer_nav = weblinks["Footer"] %} {% if footer_nav %}<div class="col-md-8 col-sm-12 col-xs-12 text-left {% if footer_nav.editable %}xrm-entity xrm-editable-adx_weblinkset{% endif %}" data-weblinks-maxdepth="2"><ul class="row list-unstyled"> {% for link in footer_nav.weblinks %}<li class="col-sm-3"><h4>{{ link.name }}</h4><ul class="list-unstyled"> {% if link.display_page_child_links %} {% assign sublinks = sitemap[link.url].children %} {% else %} {% assign sublinks = link.weblinks %} {% endif %} {% if sublinks.size > 0 %} {% for sublink in sublinks %}<li><a href="{{ sublink.url | escape }}">{{ sublink.name | default:sublink.title }}</a></li> {% endfor %} {% endif %}</ul></li> {% endfor %}</ul> {% editable footer_nav %}</div> {% endif %}</div></div></footer>