From 7ff83424592cd5a3c58fe2e6d7e67aeef5144caf Mon Sep 17 00:00:00 2001 From: horus Date: Sat, 27 Jun 2026 05:40:45 +0200 Subject: merge --- ssh/resources/views/topicindex.blade.php | 50 -------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 ssh/resources/views/topicindex.blade.php (limited to 'ssh/resources/views/topicindex.blade.php') diff --git a/ssh/resources/views/topicindex.blade.php b/ssh/resources/views/topicindex.blade.php deleted file mode 100644 index 67b0de4..0000000 --- a/ssh/resources/views/topicindex.blade.php +++ /dev/null @@ -1,50 +0,0 @@ -@extends('layouts.app') - -@section('styles') -@include ('layouts.footer-style') -html { - height: inherit; -} -@endsection - -@section ('content') - -
- -
- -
- -@php ($curLetter = "") -@foreach ($topics->get() as $topic) - @if ( "" != $topic->name ) - @php ( $firstLetter = strtoupper(substr($topic->name, 0, 1)) ) - @if ( $curLetter != $firstLetter ) -
-

- - {{ $firstLetter }} - -

-
-
- - @php ($curLetter = $firstLetter) - - @endif - {{ ucwords($topic->name) }} - @endif -@endforeach - -
-@endsection - -@section ('footer') - @include ('layouts.footer') -@endsection -- cgit v1.2.3