Skip to content

Commit

Permalink
make all links force new tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
alan707 authored and monkbroc committed Nov 20, 2015
1 parent 323b50b commit 30fd30c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
12 changes: 6 additions & 6 deletions source/_footer.html.erb
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<footer class="site-footer">
<%= partial "social_buttons" %>
<span class="site-footer-owner"><%= link_to data.project.name, data.project.repository_url %> was
created by <a href="https://www.munirent.co">MuniRent</a> and maintained by many contributors
created by <%= link_to "MuniRent", "https://www.munirent.co", target: "blank" %> and maintained by many contributors
including:
<%= data.contributors.map { |contributor| link_to contributor.name, contributor.url }.join(", ") %>
<%= data.contributors.map { |contributor| link_to contributor.name, contributor.url, target: "blank" }.join(", ") %>
</span>

<%= partial "license" %>

<span class="site-footer-credits">This page was generated by
<a href="https://pages.github.com">GitHub Pages</a> using the
<a href="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/jasonlong/cayman-theme">Cayman theme</a>
by <a href="https://twitter.com/jasonlong">Jason Long</a>. Header image by
<a href="https://dribbble.com/alexandren">Alexandre Naud</a>.
<%= link_to "GitHub Pages", "https://pages.github.com", target: "blank" %> using the
<%= link_to "Cayman theme", "https://github.com/jasonlong/cayman-theme", target: "blank" %>
by <%= link_to "Jason Long", "https://twitter.com/jasonlong", target: "blank" %>. Header image by
<%= link_to "Alexandre Naud", "https://dribbble.com/alexandren", target: "blank" %>.
</span>
</footer>
5 changes: 1 addition & 4 deletions source/_license.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
<img src="http:https://i.creativecommons.org/p/zero/1.0/88x31.png" style="border-style: none; margin: 10px; " alt="CC0" />
</a>
<p>
To the extent possible under law,
<a rel="dct:publisher"
href="https://www.munirent.co">
<span property="dct:title">MuniRent</span></a>
To the extent possible under law, <span property="dct:title"><%= link_to "MuniRent", "https://www.munirent.co", rel:"dct:publisher", target: "blank" %></span>
has waived all copyright and related or neighboring rights to
<span property="dct:title">Open Procure</span>.
This work is published from:
Expand Down
4 changes: 2 additions & 2 deletions source/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<section class="page-header">
<h1 class="project-name"><%= data.project.name %></h1>
<h2 class="project-tagline"><%= data.project.tagline %></h2>
<%= link_to "View on GitHub", data.project.repository_url, class: "btn" %>
<%= link_to "Contribute to the data", data.project.edit_url, class: "btn" %>
<%= link_to "View on GitHub", data.project.repository_url, class: "btn", target: "blank" %>
<%= link_to "Contribute to the data", data.project.edit_url, class: "btn", target: "blank" %>
</section>

<section class="main-content">
Expand Down

0 comments on commit 30fd30c

Please sign in to comment.