File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1- <?php $ this ->layout ('layout::layout ' , []) ?>
1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ /**
6+ * @var League\Plates\Template\Template $this
7+ */
8+
9+ $ this ->layout ('layout::default ' , ['redirect ' => true ]);
10+ ?>
211
312<div class="row">
413 <div class="col-md-2 col-sm-12">
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ /**
6+ * @var League\Plates\Template\Template $this
7+ * @var string $title
8+ * @var bool|null $redirect
9+ */
10+ ?>
111<!DOCTYPE html>
212<html lang="en">
313
1020
1121 <title><?= $ title ?? 'Laminas: Components and MVC for Enterprise Applications ' ?> </title>
1222 <link rel="stylesheet" href="/css/styles.css">
23+
24+ <?php if (isset ($ redirect ) && $ redirect === true ) : ?>
25+ <script>location.href = 'https://getlaminas.org'</script>
26+ <meta http-equiv="refresh" content="0; url=https://getlaminas.org">
27+ <?php endif ?>
1328</head>
1429<body id="page-top" class="laminas">
1530 <nav class="navbar navbar-expand-lg navbar-dark bg-primary">
You can’t perform that action at this time.
0 commit comments