mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
18 lines
658 B
PHP
18 lines
658 B
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
$titleColSize = $bigTitle ? 8 : 6;
|
|
$logoColSize = $bigTitle ? 4 : 6;
|
|
?>
|
|
<div class="col-xs-12 content-padding">
|
|
<div class="col-xs-<?php echo $titleColSize; ?> vcenter text-left">
|
|
<h2><?php echo $sectionTitle; ?></h2>
|
|
</div><!--
|
|
--><div class="col-xs-<?php echo $logoColSize; ?> nopadding vcenter text-right">
|
|
<a href="<?php echo $enterprise_website[0]; ?>" target="_blank">
|
|
<img src="include/install/images/vtenext.png" />
|
|
</a>
|
|
</div>
|
|
</div>
|