mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
39 lines
No EOL
1.2 KiB
PHP
39 lines
No EOL
1.2 KiB
PHP
<?php
|
|
/*
|
|
* Paste <https://github.com/jordansamuel/PASTE> - Bulma theme
|
|
* Theme by wsehl <github.com/wsehl> (January, 2021)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 3
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License in GPL.txt for more details.
|
|
*/
|
|
?>
|
|
|
|
<main class="bd-main">
|
|
<div class="bd-side-background"></div>
|
|
<div class="bd-main-container container">
|
|
<div class="bd-duo">
|
|
<div class="bd-lead">
|
|
<h1 class="title is-4"><?php echo $page_title; ?><h1>
|
|
<?php
|
|
if (isset($stats)) {
|
|
echo $page_content;
|
|
} else {
|
|
echo '<p class="help is-danger subtitle is-6">' . $lang['notfound'] . '</p>';
|
|
}
|
|
|
|
if (isset($site_ads)) {
|
|
echo $site_ads['ads_2'];
|
|
}
|
|
?>
|
|
</div>
|
|
<?php require_once('theme/' . $default_theme . '/sidebar.php'); ?>
|
|
</div>
|
|
</div>
|
|
</main>
|