mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- refactor meta-tags by generating them in the controller and injecting them into the views - use `melbahja/seo` library to build opengraph and twitter meta-tags + schema.org objects
11 lines
269 B
PHP
11 lines
269 B
PHP
<?= $this->extend('pages/_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= lang('Person.credits') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
<div class="prose prose-brand">
|
|
<?= $page->content_html ?>
|
|
</div>
|
|
<?= $this->endSection() ?>
|