various changes, fixes to css etc

This commit is contained in:
w0bm
2021-11-07 10:28:35 +00:00
parent ac6c15c0e1
commit 50b89c7be7
102 changed files with 2358 additions and 38 deletions

View File

@@ -0,0 +1,35 @@
@extends('profilelayout')
@section('novidcontent')
@include('partials.profileheader')
<div class="profilheader p-2">
<a href="/{{$user->baseurl()}}/">View {{ $title }}</a>
</div>
<table class="table table-hover table-condensed">
<thead>
<tr>
<th>ID</th>
<th>Video Title</th>
<th>Artist</th>
<th>Songtitle</th>
<th class="hidden-xs">Video Source</th>
<th>Category</th>
</tr>
</thead>
<tbody>
@foreach($videos as $video)
<?php
$thumb = str_replace(".webm","",$video->file);
?>
<tr data-thumb="{{$thumb}}">
<td><a href="/{{$user->baseurl()}}/{{$video->id}}">{{$video->id}}</a></td>
<td>{{$video->videotitle or ''}}</td>
<td>{{$video->interpret or ''}}</td>
<td>{{$video->songtitle or ''}}</td>
<td class="hidden-xs">{{$video->imgsource or ''}}</td>
<td><a href="{{url($video->category->shortname)}}">{{$video->category->name}}</a></td>
</tr>
@endforeach
</tbody>
</table>
{!! $videos->render() !!}
@endsection