Files
2026-07-01 16:44:17 +03:00

28 lines
1.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="container py-4 main">
<h4>ARAMA SONUÇLARI</h4>
<hr style="border-color:var(--glass-border)">
<div class="post-card mb-4">
<div class="p-3" style="background:rgba(59,130,246,0.08);border-bottom:1px solid var(--glass-border);border-radius:var(--border-radius) var(--border-radius) 0 0;">
<h5 class="mb-0" style="color:var(--text-main)">Açtığı konular</h5>
</div>
<div class="p-3">
@if ($konulistesi)
@foreach ($konulistesi as $key )
@if($key->content_id == '0')
{[$id = $key->id]}
@else
{[$id = $key->content_id]}
@endif
<a href="https://forum.pisilinux.og/subject/{[ echo $id.'-'.$key->title_seo ]}" target="_blank" style="color:var(--primary);display:block;padding:6px 0;">
{{$key->title}} ({{kelimebol($key->content,50)}})
</a>
<hr style="border-color:var(--glass-border)">
@endforeach
@else
<p class="text-muted">Aradığınız kriterlere uygun sonuç bulunamadı!</p>
@endif
</div>
</div>
</div>