You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.4 KiB
PHTML
64 lines
2.4 KiB
PHTML
1 year ago
|
<x-outer-card class="col-span-1">
|
||
|
<x-inner-card>
|
||
|
|
||
|
<div class="h-full w-full grid space-y-2 content-center whitespace-nowrap ">
|
||
|
<h2 class="text-xl text-shadow-sm shadow-zinc-900 font-bold"> < Recent Blog Posts > </h2>
|
||
|
|
||
|
<hr class="border-zinc-500 drop-shadow-pixel-sm shadow-zinc-900">
|
||
|
|
||
|
<ul class="list-disc list-inside mr-7 marker:font-ibm marker:text-lime-400">
|
||
|
|
||
|
<li>
|
||
|
<x-news-item class="text-white"
|
||
|
newest="true"
|
||
|
date="2023-06-08"
|
||
|
link="#"
|
||
|
link_name="blog"
|
||
|
title="Newest item style">
|
||
|
</x-news-item>
|
||
|
</li>
|
||
|
<li>
|
||
|
<x-news-item class="text-green-300"
|
||
|
date="2023-06-07"
|
||
|
link="#"
|
||
|
link_name="blog"
|
||
|
title="A Blog Entry">
|
||
|
</x-news-item>
|
||
|
</li>
|
||
|
<li>
|
||
|
<x-news-item class="text-green-400"
|
||
|
date="2023-06-05"
|
||
|
link="#"
|
||
|
link_name="blog"
|
||
|
title="Another Blog Entry">
|
||
|
</x-news-item>
|
||
|
</li>
|
||
|
<li>
|
||
|
<x-news-item class="text-green-500"
|
||
|
date="2023-06-02"
|
||
|
link="#"
|
||
|
link_name="blog"
|
||
|
title="Project Update">
|
||
|
</x-news-item>
|
||
|
</li>
|
||
|
<li>
|
||
|
<x-news-item class="text-green-600"
|
||
|
date="2023-06-02"
|
||
|
link="#"
|
||
|
link_name="blog"
|
||
|
title="Another link">
|
||
|
</x-news-item>
|
||
|
</li>
|
||
|
</ul>
|
||
|
|
||
|
<hr class="border-zinc-500 drop-shadow-pixel-sm shadow-zinc-900">
|
||
|
|
||
|
<div>
|
||
|
// For more, head over to the
|
||
|
<span class="text-blue-400 hover:text-blue-300 underline"><a href="">blog</a></span>.
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</x-inner-card>
|
||
|
</x-outer-card>
|