@extends('layouts.app') @section('content')

WordPress Temaları

WordPress.org repository'sinden tema arayın ve sitelerinize yükleyin

@if($error)

{{ $error }}

@endif @if(!empty($query) && empty($themes) && !$error)

Sonuç bulunamadı

Farklı bir anahtar kelime deneyin

@endif @if(empty($query))

Tema aramak için yukarıdaki arama kutusunu kullanın

@endif @if(!empty($themes))

{{ count($themes) }} tema bulundu

@if($totalPages > 1)
@if($page > 1) @endif Sayfa {{ $page }} / {{ $totalPages }} @if($page < $totalPages) @endif
@endif
@foreach($themes as $theme)
@if(!empty($theme['screenshot_url'])) {{ $theme['name'] }} @else
@endif @if(!empty($theme['rating']))
{{ number_format($theme['rating'] / 20, 1) }}/5
@endif

{{ $theme['name'] }}

{{ $theme['description'] ?? '' }}

@if(isset($theme['downloaded'])) {{ number_format($theme['downloaded']) }}+ indirme @endif @if(isset($theme['rating'])) {{ number_format($theme['rating'] / 20, 1) }}/5 @endif @if(isset($theme['last_updated'])) {{ \Carbon\Carbon::parse($theme['last_updated'])->format('d.m.Y') }} @endif
Detay
@endforeach
@if($totalPages > 1)
@if($page > 1) Önceki @endif @if($page < $totalPages) Sonraki @endif
@endif @endif
@endsection