forked from kamea/starlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic.php
24 lines (24 loc) · 883 Bytes
/
static.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php include 'header.php' ?>
<main>
<div class="relative py-12 lg:py-24">
<div class="mx-auto max-w-5xl px-2 md:px-0">
<article class="mx-auto max-w-5xl" id="static-page-<?php echo $plxShow->staticId(); ?>">
<div class="text-center">
<h1 class="pb-3 font-bold"><?php $plxShow->staticTitle(); ?></h1>
<p class="flex items-center justify-center">
<?php
if (isset($plxShow->plxMotor->aStats[$plxShow->plxMotor->cible]['date_update'])) {
$plxShow->lang('UPDATE_DATE');
$plxShow->staticUpdateDate('#day #num_day #month #num_year(2)');
}
?>
</p>
</div>
<div class="max-w-7xl mx-auto py-8 md:py-16 plx_content">
<?php $plxShow->staticContent(); ?>
</div>
</article>
</div>
</div>
</main>
<?php include 'footer.php' ?>