Files
larablog/themes/default/views/search.blade.php
T
ak 263b98b218 Initial baseline: LaraBlog core with plugin commerce surface.
Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
2026-08-12 01:15:38 +08:00

22 lines
824 B
PHP

@extends('theme::layout')
@section('content')
<div class="panel">
<h1 class="page-title">搜索</h1>
<form class="stack" method="get" action="{{ url('/search.shtml') }}">
<label>关键词</label>
<input name="keywords" value="{{ $keywords }}" placeholder="标题或正文">
<button type="submit">搜索</button>
</form>
</div>
<div class="post-list">
@foreach($articles as $article)
<article class="post-item">
<h2><a href="{{ url('/show-'.$article->id.'.shtml') }}">{{ $article->title }}</a></h2>
<p class="meta">{{ optional($article->published_at)->format('Y-m-d') }}</p>
</article>
@endforeach
</div>
<div class="pagination">{{ $articles->links() }}</div>
@endsection