mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-06 18:31:05 +00:00
25 lines
527 B
PHP
25 lines
527 B
PHP
![]() |
<?= $this->extend('_layout') ?>
|
||
|
|
||
|
<?= $this->section('title') ?>
|
||
|
<?= lang('Plugins.installed', [
|
||
|
'count' => $total,
|
||
|
]) ?>
|
||
|
<?= $this->endSection() ?>
|
||
|
|
||
|
<?= $this->section('pageTitle') ?>
|
||
|
<?= lang('Plugins.installed', [
|
||
|
'count' => $total,
|
||
|
]) ?>
|
||
|
<?= $this->endSection() ?>
|
||
|
|
||
|
<?= $this->section('content') ?>
|
||
|
<div class="grid gap-4 mb-4 grid-cols-plugins">
|
||
|
<?php foreach ($plugins as $plugin) {
|
||
|
echo view('plugins/_plugin', [
|
||
|
'plugin' => $plugin,
|
||
|
]);
|
||
|
} ?>
|
||
|
</div>
|
||
|
<?= $pager_links ?>
|
||
|
<?= $this->endSection() ?>
|