Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
fix: link no referrer
Browse files Browse the repository at this point in the history
  • Loading branch information
KaneFreeman committed Oct 31, 2023
1 parent b5a9e5e commit a43b903
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
28 changes: 14 additions & 14 deletions src/_includes/partials/content.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<div class="w-full max-w-2xl grid grid-cols-1 lg:grid-cols-2 gap-4 my-8 px-4 lg:mx-0">

{% if quicklinks.links %}

{% for item in quicklinks.links %}
<a href="{{item.url}}" target="_blank" class="p-5 border rounded border-gray-200 hover:border-purple-400">
<h3>{{item.title}}
</h3>
<p>{{item.desc}}</p>
</a>
{% endfor %}

{% endif %}

<div class="w-full max-w-2xl grid grid-cols-1 lg:grid-cols-2 gap-4 my-8 px-4 lg:mx-0">

{% if quicklinks.links %}

{% for item in quicklinks.links %}
<a href="{{item.url}}" target="_blank" rel="noopener noreferrer" class="p-5 border rounded border-gray-200 hover:border-purple-400">
<h3>{{item.title}}
</h3>
<p>{{item.desc}}</p>
</a>
{% endfor %}

{% endif %}

</div>
18 changes: 9 additions & 9 deletions src/_includes/partials/footer.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<footer class="{{ 'fixed' if path == 'home' }} bottom-0 text-center w-full py-4">
<small class="text-gray-500">Copyright ©
{{settings.name}}
2020. Made with ❤ by
<a href="{{settings.url}}" target="_blank" class="underline">{{settings.author}}</a>
<a href="https://github.com/StaticJsCMS/static-cms-eleventy-netlify-template" class="underline" target="_blank" rel="noopener">View on Github</a>
</small>
</footer>
<footer class="{{ 'fixed' if path == 'home' }} bottom-0 text-center w-full py-4">
<small class="text-gray-500">Copyright ©
{{settings.name}}
2020. Made with ❤ by
<a href="{{settings.url}}" target="_blank" rel="noopener noreferrer" class="underline">{{settings.author}}</a>
<a href="https://github.com/StaticJsCMS/static-cms-eleventy-netlify-template" class="underline" target="_blank" rel="noopener noreferrer">View on Github</a>
</small>
</footer>

0 comments on commit a43b903

Please sign in to comment.