Add configurable external links to top navigation. Resolves #5

This commit is contained in:
Michael Rose
2013-06-30 15:34:46 -04:00
parent ed5062c9fd
commit 8e94928183
4 changed files with 39 additions and 4 deletions

View File

@@ -6,7 +6,7 @@
<nav role="navigation" itemscope itemtype="http://schema.org/SiteNavigationElement">
<ul>
{% for link in site.links %}
<li><a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a></li>
<li><a href="{% if link.external %}{{ link.url }}{% else %}{{ site.url }}{{ link.url }}{% endif %}" {% if link.external %}target="_blank"{% endif %}>{{ link.title }}</a></li>
{% endfor %}
<li><i class="icon-feed"></i> <a href="{{ site.url }}/feed.xml" title="Atom/RSS feed">Feed</a>
</ul>