-
-
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
81f35b3
commit 5e0c303
Showing
10 changed files
with
50 additions
and
47 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,4 +1 @@ | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" class="text-current fill-current motion-safe:(transition) group-hover:(rotate-45)" role="img"> | ||
<title>{{ site.meta.title }}</title> | ||
<path d="m49.9997864 52.8277864 33.9127303 33.914098c-8.9121413 8.2299265-20.8251307 13.2581156-33.9125167 13.2581156-13.0878756 0-25.0012668-5.0285653-33.9135169-13.2590393zm-36.7407471-36.7413033 33.9127471 33.9133033-33.9127471 33.9137305c-8.23047398-8.9122501-13.2590393-20.8256413-13.2590393-33.9135169s5.02856532-25.0012668 13.2590393-33.9135169zm73.4819214 0c8.230474 8.9122501 13.2590393 20.8256413 13.2590393 33.9135169 0 13.087386-5.0281891 25.0003754-13.2581156 33.9125167l-33.914098-33.9127303zm-36.7409607-16.0864831c13.0878756 0 25.0012668 5.02856532 33.9135169 13.2590393l-33.9137305 33.9127471-33.9133033-33.9127471c8.9122501-8.23047398 20.8256413-13.2590393 33.9135169-13.2590393z" fill-rule="evenodd" /> | ||
</svg> | ||
<iconify-icon icon="mdi:tailwind" inline width="50px" height="50px" class="iconify"></iconify-icon> |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{%- macro heading(param) %} | ||
<{{ param.tag if param.tag else 'h1' }} class="pb-12 w-full text-2xl leading-tight font-black flex items-center space-x-4 lg:(text-[calc(3vw)])"> | ||
{%- if param.divider %}<i class="h-px bg-gray-500/20 flex-1" aria-hidden="true"></i>{%- endif %} | ||
<span class="{% if param.divider %}flex-none{% else %}text-center flex-1{% endif %}"> | ||
{{ param.slot | safe }} | ||
</span> | ||
{%- if param.divider %}<i class="h-px bg-gray-500/20 flex-1" aria-hidden="true"></i>{%- endif %} | ||
</{{ param.tag if param.tag else 'h1' }}> | ||
{%- endmacro %} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{%- macro list(param) %} | ||
<ul class="mx-auto max-w-xl grid-(& cols-1) gap-16 lg:(max-w-none grid-cols-3)"> | ||
{{ param.slot | safe }} | ||
</ul> | ||
{%- endmacro %} | ||
|
||
{%- macro listItem(param) %} | ||
<li class="flex"> | ||
{{ param.slot | safe }} | ||
</li> | ||
{%- endmacro %} |
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
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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
title: Gadget | ||
img: 0 | ||
rating: 2 | ||
price: 99 | ||
date: 0001-01-01 | ||
--- | ||
|
||
|
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
title: Hunkerdoo | ||
img: 20 | ||
rating: 3 | ||
price: 75 | ||
date: 0002-01-01 | ||
--- | ||
|
||
|
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
title: Widget | ||
img: 26 | ||
rating: 4 | ||
price: 25 | ||
date: 0003-01-01 | ||
--- | ||
|
||
|