exchangerix/aboutus.php
2025-12-19 20:13:55 +06:00

27 lines
767 B
PHP

<?php
/*******************************************************************\
* Exchangerix v2.0
* http://www.exchangerix.com
*
* Copyright (c) 2018 Exchangerix Software. All rights reserved.
* ---------- Exchangerix IS NOT FREE SOFTWARE ----------
\*******************************************************************/
session_start();
require_once("inc/config.inc.php");
$content = GetContent('aboutus');
/////////////// Page config ///////////////
$PAGE_TITLE = $content['title'];
$PAGE_DESCRIPTION = $content['meta_description'];
$PAGE_KEYWORDS = $content['meta_keywords'];
require_once ("inc/header.inc.php");
?>
<h1><?php echo $content['title']; ?></h1>
<p><?php echo $content['text']; ?></p>
<?php require_once("inc/footer.inc.php"); ?>