some changes to the login page for non authed users. And also added a new layout with the id 6 only for marderchen to fix his async issues with older browsers

This commit is contained in:
noxy
2019-11-11 22:21:24 +00:00
parent f78dbfd5c3
commit 35c60a47e9
79 changed files with 3771 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
@extends('layout')
@section('content')
<div class="page-header">
<h3>Categories</h3>
</div>
<div class="" id="categories">
@foreach($categories as $category)
<div id="category_box_{{$category->shortname}}" class="col-sm-6 col-md-4 category">
<div class="thumbnail">
<img src="{{ asset('/images/cat/' . $category->shortname . '.webp') }}" alt="{{$category->name}}">
<div class="caption">
<h3>{{$category->name}} <small>{{$category->videos()->count()}}</small></h3>
<p>{{$category->description}}</p>
<p><a href="{{$category->shortname}}" class="btn btn-primary" role="button">View</a></p>
</div>
</div>
</div>
@endforeach
</div>
@endsection