Files
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

15 lines
451 B
PHP

@extends('theme::layout')
@section('content')
<div class="panel">
<h1 class="page-title">友情链接</h1>
<ul>
@forelse($links as $link)
<li><a href="{{ $link->url }}" rel="noopener" target="_blank">{{ $link->name }}</a>@if($link->note) {{ $link->note }}@endif</li>
@empty
<li class="meta">暂无链接</li>
@endforelse
</ul>
</div>
@endsection