/var/lib/pluxml/themes/defaut/static-full-width.php is in pluxml 5.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <?php include(dirname(__FILE__) . '/header.php'); ?>
<main class="main grid" role="main">
<section class="col sml-12">
<article class="article static" role="article" id="static-page-<?php echo $plxShow->staticId(); ?>">
<header>
<h1>
<?php $plxShow->staticTitle(); ?>
</h1>
</header>
<section>
<?php $plxShow->staticContent(); ?>
</section>
</article>
</section>
</main>
<?php include(dirname(__FILE__).'/footer.php'); ?>
|