19 lines
652 B
HTML
19 lines
652 B
HTML
<?php Block::put('breadcrumb') ?>
|
|
<ul>
|
|
<li><a href="<?= Backend::url('graker/photoalbums/albums') ?>"><?= e(trans('graker.photoalbums::lang.plugin.albums')) ?></a></li>
|
|
<li><?= e($this->pageTitle) ?></li>
|
|
</ul>
|
|
<?php Block::endPut() ?>
|
|
|
|
<?php if (!$this->fatalError): ?>
|
|
|
|
<div class="form-preview">
|
|
<?= $this->formRenderPreview() ?>
|
|
</div>
|
|
|
|
<?php else: ?>
|
|
|
|
<p class="flash-message static error"><?= e($this->fatalError) ?></p>
|
|
<p><a href="<?= Backend::url('graker/photoalbums/albums') ?>" class="btn btn-default"><?= e(trans('graker.photoalbums::lang.errors.return_to_albums')) ?></a></p>
|
|
|
|
<?php endif ?> |