summaryrefslogtreecommitdiff
path: root/resources/views/links/index.blade.php
blob: 4ffca7b1f7ef7a1f62611280d5ff066a1d9097da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@extends('template')
@section('content')
<main>
<div class="">
        <div class="">
            <h1 class="">Links</h1>
            <p class="">Useful or Intersting Stuff</p>
        </div>

        <div class="grid">
            @foreach ($links as $link)
                <article class="">
                    <a href="{{ $link->url }}" class="">
                        <h2 class="">
                            {{ $link->label }}
                        </h2>
                        
                        {{ $link->url }}

                        <!-- tags -->
                    </a>
                </article>
            @endforeach
        </div>


    </div>
</main>
@endsection