server ver

This commit is contained in:
w0bm
2023-12-05 22:43:30 +00:00
parent b8e4b5fbfa
commit ac59ed6f81
75 changed files with 2175 additions and 1 deletions

View File

@@ -0,0 +1,65 @@
@extends('profilelayout')
@section('content')
<div class="page-header">
<h3>RE: Content on w0bm</h3>
<p><i>For a happier future… or so I hope</i></p>
</div>
<div class="box">
<h4>Original in German</h4>
<div class="german">
<pre>
RE: Content on w0bm
Ich will keine Nachrichten, keine Politik, keinen Krieg und auch sonst keine zu mainstreamigen Sachen auf meiner Platform.
Ich möchte das w0bm eine Page ist die lustiges und kurioses gezielt zur Schau stellt.
Nnatürlich bin ich nicht alleiniger Entscheider darüber was potentiell als lustig, kurios oder anderweitig merkwürdig zu gelten hat,
jedoch behalte ich mir vor das ganze in einem gewissen Rahmen zu formen, so ist nun der Zeitpunkt gekommen,
an dem ich diese Formung verfestigen werde und in Futur 2 viele Uploads gelöscht haben werde.
Die Löschung hat betroffen:
Inhalte mit Nachrichten, Politik und Krieg.
Inhalte mit Gore.
Die vollständigen Kategorien:
politics, military, mett
sind entfernt worden
Ab sofort bitte keine Inhalte mit oben aufgeführten Kriterien mehr hochladen.
Liebe Grüße
die Administration
</pre>
</div>
<h4>English translation</h4>
<div class="usaenglish">
<pre>
RE: Content on w0bm
I don't want news, politics, war or anything too mainstream on my platform.
I want w0bm to be a site that showcases funny and curious content.
Of course, I am not the sole decider of what is potentially considered funny, curious or otherwise strange,
but I reserve the right to shape the whole thing within a certain framework, so now the time has come,
at which I will solidify this shaping and will have deleted many uploads in future tense 2.
The deletion has affected:
Content with news, politics and war.
Content with Gore.
The complete categories:
politics, military, mett
have been removed
From now on, please do not upload any content with the above criteria.
Kind regards
the administration
</pre>
</div>
</div>
@endsection

View File

@@ -0,0 +1,54 @@
<div style="visibility: hidden;" class="footer">
<div class="vidinfo_topper">
<span class="videoinfo_top">
{{$video->videotitle}} uploaded by {{ $video->user->username }} <a class="{{ $video->user->username }}" style="color: white" href="{{ url('user/' . $video->user->username) }}">{!! $video->user->displayName() !!}</a></span> <time class="timeago" data-toggle="tooltip" data-placement="top" datetime="{{$video->created_at->toIso8601String()}}" title="{{$video->created_at->toIso8601String()}}"></time>
<button title="Toggle comments" class="hidden-xs toggle-comments" id="toggle"><i class="fa fa-comments"></i> <span id="commentAmount">{{ $video->comments()->count() }}</span></button>
<button title="Toggle Background" class="hidden-xs bg-toggle" id="togglebg"><i style="color:#fff200;" class="fa fa-adjust"></i></button>
<button class="copylink" data-clipboard-text="{{url($video->id)}}" title="Copy URL!"><i class="fa fa-link"></i></button>
<div class="dropdown">
<button class="fa fa-download"
id="dlbutton"
style="cursor: pointer"
data-toggle="popover"
data-placement="top"
data-trigger="hover"
data-html="true"
title="Download"
data-content="
<div class='downloadvid'>
<ul class='downloadlist'>
<li><a class='file_size' href='{{ '/b/' . $video->file }}' download>WebM</a> <span class='filesize'> ({{HumanReadable::bytesToHuman($video->filesize()) }})</span></li>
</ul>
</div>"
</button>
</div>
@if(auth()->check())
<button title="Report WebM" id="webm_report" class="webm-report" data-toggle="modal" data-target="#webmreportmodal"><i class="fa fa-warning fa-md"></i></button>
@endif
<div class="favbutton">
@if(auth()->check())
@if(auth()->user()->hasFaved($video->id))
<a id="fav" href="{{url($video->id . '/fav')}}"><i style="color:#ff0094;" class="fa fa-heart"></i></a>
@else
<a id="fav" href="{{url($video->id . '/fav')}}"><i style="color:#ff0094;" class="fa fa-heart-o"></i></a>
@endif
@else
<a href="{{url($video->id . '/fav')}}"><i class="fa fa-heart-o"></i></a>
@endif
</div>
</button>
<button class="fa fa-info-circle"
id="infobox"
style="cursor: pointer"
data-toggle="popover"
data-placement="top"
data-trigger="hover"
data-html="true"
title="Information"
data-content="@include('popover-content')">
</button>
<span id="uploader">uploaded by <a class="{{ $video->user->username }}" style="color: white" href="{{ url('user/' . $video->user->username) }}">{!! $video->user->displayName() !!}</a></span> <time class="timeago" data-toggle="tooltip" data-placement="top" datetime="{{$video->created_at->toIso8601String()}}" title="{{$video->created_at->toIso8601String()}}"></time>@if(auth()->check() && (auth()->user()->can('edit_video') || auth()->user()->id == $video->user_id)) <a class="edit_video" href="#" data-toggle="modal" data-target="#webmeditmodal">[edit]</a>@endif @if(auth()->check() && auth()->user()->can('delete_video'))<a class="delete_video" href="#">[del]</a>@endif
</span>
</div>
</div>

View File

@@ -25,4 +25,5 @@ getLatestCommit();
getLastTenCommits()
?>
@endsection
@endsection
@include('footer')

View File

@@ -128,6 +128,7 @@
@section('aside')
<aside id="sidebar" class="aside panel hidden-xs">
<div><a href="/changes">RE: Content on w0bm</a></div>
@include('partials.flash')
@include('partials.comments')
@include('partials.tags')