mirror of
https://github.com/YunoHost-Apps/pluxml_ynh.git
synced 2024-09-03 20:16:02 +02:00
29 lines
486 B
PHP
29 lines
486 B
PHP
<?php include(dirname(__FILE__) . '/header.php'); ?>
|
|
|
|
<section>
|
|
|
|
<div id="container">
|
|
|
|
<div class="full-width">
|
|
|
|
<article role="article" id="static-page-<?php echo $plxShow->staticId(); ?>">
|
|
|
|
<header>
|
|
<h1>
|
|
<?php $plxShow->staticTitle(); ?>
|
|
</h1>
|
|
</header>
|
|
|
|
<section>
|
|
<?php $plxShow->staticContent(); ?>
|
|
</section>
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<?php include(dirname(__FILE__) . '/footer.php'); ?>
|