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.
niisse-net/resources/views/home/recent-blog.blade.php

64 lines
2.2 KiB
PHTML

1 year ago
<x-outer-card class="col-span-1">
1 year ago
<x-inner-card class="!shadow-lime-600">
1 year ago
1 year ago
<div class="h-full grid space-y-2 content-center whitespace-nowrap ">
<h2> < Recent Blog Posts > </h2>
1 year ago
<hr>
1 year ago
<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-lime-300"
1 year ago
date="2023-06-07"
link="#"
link_name="blog"
title="A Blog Entry">
</x-news-item>
</li>
<li>
<x-news-item class="text-lime-400"
1 year ago
date="2023-06-05"
link="#"
link_name="blog"
title="Another Blog Entry">
</x-news-item>
</li>
<li>
<x-news-item class="text-lime-500"
1 year ago
date="2023-06-02"
link="#"
link_name="blog"
title="Project Update">
</x-news-item>
</li>
<li>
<x-news-item class="text-lime-600"
1 year ago
date="2023-06-02"
link="#"
link_name="blog"
title="Another link">
</x-news-item>
</li>
</ul>
<hr>
1 year ago
<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>