dym-sh/resources/views/index.blade.php

14 lines
381 B
PHP
Raw Permalink Normal View History

2024-08-06 16:39:08 +02:00
<x-layout>
2024-08-09 10:37:35 +02:00
<main class="w-30 c">
{{ $greeting }}. {{ $self }}
<ol>
@foreach($articles as $article)
<li><a href="/{{ $article['slug'] }}">{{ $article['title'] ?? $article['slug'] }}</a>
@endforeach
</ol>
2024-08-07 13:08:48 +02:00
<img src="/index.png" width="500" alt="list of avatars used over the years, currently planning on visual collection for this type of postings">
</main>
2024-08-06 16:39:08 +02:00
</x-layout>