This repository was archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5a9e5e
commit a43b903
Showing
2 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |