blob: 659cc06a25e1f364608ffac1f97107470a1dd414 (
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
|
@extends('layouts.app')
@section('styles')
@endsection
@section('content')
@if ( "index" == Request::route()->getName() )
<div class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<div role="main" class="inner cover">
<h1 class="cover-heading">The Worlds Knowledge - Curated and Filtered.</h1>
<p class="lead">
Best of Wikipedia, filtered, tagged and discussed. <br>For the curious reader.
</p>
<p class="lead">
<a href="{{ route('popular') }}" class="btn btn-lg btn-outline-primary">Most Popular</a>
</p>
</div>
</div>
</div>
@endif
@endsection
|