Skip to content

Commit

Permalink
Merge pull request barryclark#40 from andersonaguiar/patch-1
Browse files Browse the repository at this point in the history
add missed target blank in external links
  • Loading branch information
mmistakes committed Jul 22, 2014
2 parents d0e7c5e + 774f043 commit c1c105b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ <h4>{{ site.owner.name }}</h4>
<li><a href="{{ site.url }}/tags/">All Tags</a></li>
</ul>
</li>
{% for link in site.links %}<li>{% if link.external %}<a href="{{ link.url }}">{{ link.title }}</a>{% else %}<a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a>{% endif %}</li>{% endfor %}
{% for link in site.links %}<li>{% if link.external %}<a href="{{ link.url }}" target="_blank">{{ link.title }}</a>{% else %}<a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a>{% endif %}</li>{% endfor %}
</ul><!-- /.dl-menu -->
</nav><!-- /.dl-menuwrapper -->

0 comments on commit c1c105b

Please sign in to comment.