Skip to content
This repository has been archived by the owner on May 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #4 from igilham/fix-footer-spans
Browse files Browse the repository at this point in the history
removed erroneous closing `span` tags from footer
  • Loading branch information
rakuishi committed Mar 14, 2016
2 parents 4bb68ef + 582ee2d commit 0b977e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<footer role="contentinfo">
<div class="hr"></div>
<div class="footer-link">
{{ with .Site.Params.email }}<a href="mailto:{{ . }}" target="_blank">Email</a></span>{{ end }}
{{ with .Site.Params.twitter }}<a href="{{ . }}" target="_blank">Twitter</a></span>{{ end }}
{{ with .Site.Params.facebook }}<a href="{{ . }}" target="_blank">Facebook</a></span>{{ end }}
{{ with .Site.Params.github }}<a href="{{ . }}" target="_blank">GitHub</a></span>{{ end }}
{{ with .Site.Params.email }}<a href="mailto:{{ . }}" target="_blank">Email</a>{{ end }}
{{ with .Site.Params.twitter }}<a href="{{ . }}" target="_blank">Twitter</a>{{ end }}
{{ with .Site.Params.facebook }}<a href="{{ . }}" target="_blank">Facebook</a>{{ end }}
{{ with .Site.Params.github }}<a href="{{ . }}" target="_blank">GitHub</a>{{ end }}
</div>
<div class="copyright">Copyright &copy; {{ .Site.Params.copyright | safeHTML }}</div>
</footer>
Expand Down

0 comments on commit 0b977e8

Please sign in to comment.