mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
- Updated page titles to remove ".LoL" for a more consistent branding across the website. This change affects multiple pages such as FAQ, About, Assets, Champions, and more.
16 lines
652 B
PHP
16 lines
652 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Heimerdinger • Posts')
|
|
@section('description', 'Explore all our blog posts on Heimerdinger.LoL. Posts about League of Legends and more.')
|
|
|
|
@section('content')
|
|
<section class="max-w-screen-xl mx-auto mt-12">
|
|
<h1
|
|
class="text-3xl font-bold text-center text-transparent uppercase sm:text-4xl bg-gradient-to-bl from-orange-300 to-orange-500 bg-clip-text">
|
|
Posts</h1>
|
|
<h2 class="text-sm font-medium text-center text-orange-400 uppercase">Our latest posts about League of
|
|
Legends</h2>
|
|
<x-posts.listposts :posts="$posts"/>
|
|
</section>
|
|
@endsection
|