From b7b3fab02760c55748d39bae1d749fcdd5e4bc88 Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Fri, 8 Dec 2023 17:41:33 +0100 Subject: [PATCH] refactor(emotes): update emotes index view - Refactored the emotes index view to extend the 'layouts.app' blade template. - Updated the title and description sections with dynamic content using Blade directives. - Removed unnecessary meta tags related to favicon, OpenGraph, and Twitter. - Added a new section for content and included the 'x-emotes.list_all' component. This commit improves the structure and organization of the emotes index view by utilizing reusable components and dynamic content. --- resources/views/emotes/index.blade.php | 58 ++++---------------------- 1 file changed, 7 insertions(+), 51 deletions(-) diff --git a/resources/views/emotes/index.blade.php b/resources/views/emotes/index.blade.php index 8a1d794..d3779aa 100644 --- a/resources/views/emotes/index.blade.php +++ b/resources/views/emotes/index.blade.php @@ -1,53 +1,9 @@ - - +@extends('layouts.app') - - - +@section('title', 'Heimerdinger.LoL • Emotes') +@section('description', 'Explore all LoL Emotes on Heimerdinger.LoL. Find detailed information on popular emotes such as +Dab Pengu, Bee Mad, Little Camper, Super Shy, PENGUMODE and more!') - - - - - - - - - - - - Heimerdinger.LoL • Emotes - - - - - - - - - - - - - - - - - - - - - - @vite(['resources/css/app.css', 'resources/js/app.js']) - - - - - - - - - +@section('content') + +@endsection