mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2025-09-22 05:34:36 -04:00
Add sorting on home page and jumbotron
This commit is contained in:
parent
99941bfd53
commit
87ef210e1f
4 changed files with 59 additions and 3 deletions
|
@ -2,8 +2,28 @@
|
|||
|
||||
@section('content')
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-12 px-0">
|
||||
<div class="jumbotron jumbotron-fluid mt-0 bg-primary text-light text-center">
|
||||
<div class="container">
|
||||
<h1 class="display-4">XMR Memes</h1>
|
||||
<p class="lead">Get tipped Monero (XMR) for making memes about Monero.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-12 mb-4">
|
||||
<div class="btn-group w-100" role="group" aria-label="Basic example">
|
||||
<a role="button" href="{{ url('') }}" class="btn btn-primary text-light {{ Request::routeIs('homepage') ? 'active' : '' }}">Latest</a>
|
||||
<a role="button" href="{{ url('recently-tipped') }}" class="btn btn-primary text-light {{ Request::routeIs('recently-tipped') ? 'active' : '' }}">Recently Tipped</a>
|
||||
<a role="button" href="{{ url('most-tipped') }}" class="btn btn-primary text-light {{ Request::routeIs('most-tipped') ? 'active' : '' }}">Most Tipped</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-4 grid-memes">
|
||||
@foreach ($data['memes'] as $meme)
|
||||
|
|
|
@ -115,9 +115,16 @@
|
|||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<main class="py-4">
|
||||
@yield('content')
|
||||
</main>
|
||||
|
||||
@if (isset($data['pt-0']))
|
||||
<main class="pb-4">
|
||||
@yield('content')
|
||||
</main>
|
||||
@else
|
||||
<main class="py-4">
|
||||
@yield('content')
|
||||
</main>
|
||||
@endif
|
||||
|
||||
<footer class="container-fluid py-5 bg-light shadow-lg text-center">
|
||||
<div class="row">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue