first commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
use CodeIgniter\CLI\CLI;
|
||||
|
||||
CLI::error('ERROR: ' . $code);
|
||||
CLI::write($message);
|
||||
CLI::newLine();
|
||||
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
use CodeIgniter\CLI\CLI;
|
||||
|
||||
// The main Exception
|
||||
CLI::newLine();
|
||||
CLI::write('[' . get_class($exception) . ']', 'light_gray', 'red');
|
||||
CLI::newLine();
|
||||
CLI::write($message);
|
||||
CLI::newLine();
|
||||
CLI::write('at ' . CLI::color(clean_path($exception->getFile()) . ':' . $exception->getLine(), 'green'));
|
||||
CLI::newLine();
|
||||
|
||||
// The backtrace
|
||||
if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE) {
|
||||
$backtraces = $exception->getTrace();
|
||||
|
||||
if ($backtraces) {
|
||||
CLI::write('Backtrace:', 'green');
|
||||
}
|
||||
|
||||
foreach ($backtraces as $i => $error) {
|
||||
$padFile = ' '; // 4 spaces
|
||||
$padClass = ' '; // 7 spaces
|
||||
$c = str_pad($i + 1, 3, ' ', STR_PAD_LEFT);
|
||||
|
||||
if (isset($error['file'])) {
|
||||
$filepath = clean_path($error['file']) . ':' . $error['line'];
|
||||
|
||||
CLI::write($c . $padFile . CLI::color($filepath, 'yellow'));
|
||||
} else {
|
||||
CLI::write($c . $padFile . CLI::color('[internal function]', 'yellow'));
|
||||
}
|
||||
|
||||
$function = '';
|
||||
|
||||
if (isset($error['class'])) {
|
||||
$type = ($error['type'] === '->') ? '()' . $error['type'] : $error['type'];
|
||||
$function .= $padClass . $error['class'] . $type . $error['function'];
|
||||
} elseif (! isset($error['class']) && isset($error['function'])) {
|
||||
$function .= $padClass . $error['function'];
|
||||
}
|
||||
|
||||
$args = implode(', ', array_map(static function ($value) {
|
||||
switch (true) {
|
||||
case is_object($value):
|
||||
return 'Object(' . get_class($value) . ')';
|
||||
|
||||
case is_array($value):
|
||||
return count($value) ? '[...]' : '[]';
|
||||
|
||||
case $value === null:
|
||||
return 'null'; // return the lowercased version
|
||||
|
||||
default:
|
||||
return var_export($value, true);
|
||||
}
|
||||
}, array_values($error['args'] ?? [])));
|
||||
|
||||
$function .= '(' . $args . ')';
|
||||
|
||||
CLI::write($function);
|
||||
CLI::newLine();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
// On the CLI, we still want errors in productions
|
||||
// so just use the exception template.
|
||||
include __DIR__ . '/error_exception.php';
|
||||
@@ -0,0 +1,197 @@
|
||||
:root {
|
||||
--main-bg-color: #fff;
|
||||
--main-text-color: #555;
|
||||
--dark-text-color: #222;
|
||||
--light-text-color: #c7c7c7;
|
||||
--brand-primary-color: #E06E3F;
|
||||
--light-bg-color: #ededee;
|
||||
--dark-bg-color: #404040;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
background: var(--main-bg-color);
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
||||
color: var(--main-text-color);
|
||||
font-weight: 300;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
h1 {
|
||||
font-weight: lighter;
|
||||
letter-spacing: 0.8;
|
||||
font-size: 3rem;
|
||||
color: var(--dark-text-color);
|
||||
margin: 0;
|
||||
}
|
||||
h1.headline {
|
||||
margin-top: 20%;
|
||||
font-size: 5rem;
|
||||
}
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
p.lead {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
.container {
|
||||
max-width: 75rem;
|
||||
margin: 0 auto;
|
||||
padding: 1rem;
|
||||
}
|
||||
.header {
|
||||
background: var(--light-bg-color);
|
||||
color: var(--dark-text-color);
|
||||
}
|
||||
.header .container {
|
||||
padding: 1rem 1.75rem 1.75rem 1.75rem;
|
||||
}
|
||||
.header h1 {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.header p {
|
||||
font-size: 1.2rem;
|
||||
margin: 0;
|
||||
line-height: 2.5;
|
||||
}
|
||||
.header a {
|
||||
color: var(--brand-primary-color);
|
||||
margin-left: 2rem;
|
||||
display: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
.header:hover a {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background: var(--dark-bg-color);
|
||||
color: var(--light-text-color);
|
||||
}
|
||||
.footer .container {
|
||||
border-top: 1px solid #e7e7e7;
|
||||
margin-top: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.source {
|
||||
background: #343434;
|
||||
color: var(--light-text-color);
|
||||
padding: 0.5em 1em;
|
||||
border-radius: 5px;
|
||||
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
||||
font-size: 0.85rem;
|
||||
margin: 0;
|
||||
overflow-x: scroll;
|
||||
}
|
||||
.source span.line {
|
||||
line-height: 1.4;
|
||||
}
|
||||
.source span.line .number {
|
||||
color: #666;
|
||||
}
|
||||
.source .line .highlight {
|
||||
display: block;
|
||||
background: var(--dark-text-color);
|
||||
color: var(--light-text-color);
|
||||
}
|
||||
.source span.highlight .number {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
list-style: none;
|
||||
list-style-position: inside;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
.tabs li {
|
||||
display: inline;
|
||||
}
|
||||
.tabs a:link,
|
||||
.tabs a:visited {
|
||||
padding: 0rem 1rem;
|
||||
line-height: 2.7;
|
||||
text-decoration: none;
|
||||
color: var(--dark-text-color);
|
||||
background: var(--light-bg-color);
|
||||
border: 1px solid rgba(0,0,0,0.15);
|
||||
border-bottom: 0;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
.tabs a:hover {
|
||||
background: var(--light-bg-color);
|
||||
border-color: rgba(0,0,0,0.15);
|
||||
}
|
||||
.tabs a.active {
|
||||
background: var(--main-bg-color);
|
||||
color: var(--main-text-color);
|
||||
}
|
||||
.tab-content {
|
||||
background: var(--main-bg-color);
|
||||
border: 1px solid rgba(0,0,0,0.15);
|
||||
}
|
||||
.content {
|
||||
padding: 1rem;
|
||||
}
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.alert {
|
||||
margin-top: 2rem;
|
||||
display: block;
|
||||
text-align: center;
|
||||
line-height: 3.0;
|
||||
background: #d9edf7;
|
||||
border: 1px solid #bcdff1;
|
||||
border-radius: 5px;
|
||||
color: #31708f;
|
||||
}
|
||||
ul, ol {
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
th {
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #e7e7e7;
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
td {
|
||||
padding: 0.2rem 0.5rem 0.2rem 0;
|
||||
}
|
||||
tr:hover td {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
td pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.trace a {
|
||||
color: inherit;
|
||||
}
|
||||
.trace table {
|
||||
width: auto;
|
||||
}
|
||||
.trace tr td:first-child {
|
||||
min-width: 5em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.trace td {
|
||||
background: var(--light-bg-color);
|
||||
padding: 0 1rem;
|
||||
}
|
||||
.trace td pre {
|
||||
margin: 0;
|
||||
}
|
||||
.args {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
// Tabs
|
||||
|
||||
var tabLinks = new Array();
|
||||
var contentDivs = new Array();
|
||||
|
||||
function init()
|
||||
{
|
||||
// Grab the tab links and content divs from the page
|
||||
var tabListItems = document.getElementById('tabs').childNodes;
|
||||
console.log(tabListItems);
|
||||
for (var i = 0; i < tabListItems.length; i ++)
|
||||
{
|
||||
if (tabListItems[i].nodeName == "LI")
|
||||
{
|
||||
var tabLink = getFirstChildWithTagName(tabListItems[i], 'A');
|
||||
var id = getHash(tabLink.getAttribute('href'));
|
||||
tabLinks[id] = tabLink;
|
||||
contentDivs[id] = document.getElementById(id);
|
||||
}
|
||||
}
|
||||
|
||||
// Assign onclick events to the tab links, and
|
||||
// highlight the first tab
|
||||
var i = 0;
|
||||
|
||||
for (var id in tabLinks)
|
||||
{
|
||||
tabLinks[id].onclick = showTab;
|
||||
tabLinks[id].onfocus = function () {
|
||||
this.blur()
|
||||
};
|
||||
if (i == 0)
|
||||
{
|
||||
tabLinks[id].className = 'active';
|
||||
}
|
||||
i ++;
|
||||
}
|
||||
|
||||
// Hide all content divs except the first
|
||||
var i = 0;
|
||||
|
||||
for (var id in contentDivs)
|
||||
{
|
||||
if (i != 0)
|
||||
{
|
||||
console.log(contentDivs[id]);
|
||||
contentDivs[id].className = 'content hide';
|
||||
}
|
||||
i ++;
|
||||
}
|
||||
}
|
||||
|
||||
function showTab()
|
||||
{
|
||||
var selectedId = getHash(this.getAttribute('href'));
|
||||
|
||||
// Highlight the selected tab, and dim all others.
|
||||
// Also show the selected content div, and hide all others.
|
||||
for (var id in contentDivs)
|
||||
{
|
||||
if (id == selectedId)
|
||||
{
|
||||
tabLinks[id].className = 'active';
|
||||
contentDivs[id].className = 'content';
|
||||
}
|
||||
else
|
||||
{
|
||||
tabLinks[id].className = '';
|
||||
contentDivs[id].className = 'content hide';
|
||||
}
|
||||
}
|
||||
|
||||
// Stop the browser following the link
|
||||
return false;
|
||||
}
|
||||
|
||||
function getFirstChildWithTagName(element, tagName)
|
||||
{
|
||||
for (var i = 0; i < element.childNodes.length; i ++)
|
||||
{
|
||||
if (element.childNodes[i].nodeName == tagName)
|
||||
{
|
||||
return element.childNodes[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getHash(url)
|
||||
{
|
||||
var hashPos = url.lastIndexOf('#');
|
||||
return url.substring(hashPos + 1);
|
||||
}
|
||||
|
||||
function toggle(elem)
|
||||
{
|
||||
elem = document.getElementById(elem);
|
||||
|
||||
if (elem.style && elem.style['display'])
|
||||
{
|
||||
// Only works with the "style" attr
|
||||
var disp = elem.style['display'];
|
||||
}
|
||||
else if (elem.currentStyle)
|
||||
{
|
||||
// For MSIE, naturally
|
||||
var disp = elem.currentStyle['display'];
|
||||
}
|
||||
else if (window.getComputedStyle)
|
||||
{
|
||||
// For most other browsers
|
||||
var disp = document.defaultView.getComputedStyle(elem, null).getPropertyValue('display');
|
||||
}
|
||||
|
||||
// Toggle the state of the "display" style
|
||||
elem.style.display = disp == 'block' ? 'none' : 'block';
|
||||
|
||||
return false;
|
||||
}
|
||||
@@ -0,0 +1,84 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>404 Page Not Found</title>
|
||||
|
||||
<style>
|
||||
div.logo {
|
||||
height: 200px;
|
||||
width: 155px;
|
||||
display: inline-block;
|
||||
opacity: 0.08;
|
||||
position: absolute;
|
||||
top: 2rem;
|
||||
left: 50%;
|
||||
margin-left: -73px;
|
||||
}
|
||||
body {
|
||||
height: 100%;
|
||||
background: #fafafa;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
color: #777;
|
||||
font-weight: 300;
|
||||
}
|
||||
h1 {
|
||||
font-weight: lighter;
|
||||
letter-spacing: 0.8;
|
||||
font-size: 3rem;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
color: #222;
|
||||
}
|
||||
.wrap {
|
||||
max-width: 1024px;
|
||||
margin: 5rem auto;
|
||||
padding: 2rem;
|
||||
background: #fff;
|
||||
text-align: center;
|
||||
border: 1px solid #efefef;
|
||||
border-radius: 0.5rem;
|
||||
position: relative;
|
||||
}
|
||||
pre {
|
||||
white-space: normal;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
code {
|
||||
background: #fafafa;
|
||||
border: 1px solid #efefef;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 5px;
|
||||
display: block;
|
||||
}
|
||||
p {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
.footer {
|
||||
margin-top: 2rem;
|
||||
border-top: 1px solid #efefef;
|
||||
padding: 1em 2em 0 2em;
|
||||
font-size: 85%;
|
||||
color: #999;
|
||||
}
|
||||
a:active,
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #dd4814;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrap">
|
||||
<h1>404 - File Not Found</h1>
|
||||
|
||||
<p>
|
||||
<?php if (! empty($message) && $message !== '(null)') : ?>
|
||||
<?= nl2br(esc($message)) ?>
|
||||
<?php else : ?>
|
||||
Sorry! Cannot seem to find the page you were looking for.
|
||||
<?php endif ?>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,397 @@
|
||||
<?php $error_id = uniqid('error', true); ?>
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
<title><?= esc($title) ?></title>
|
||||
<style type="text/css">
|
||||
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
|
||||
</style>
|
||||
|
||||
<script type="text/javascript">
|
||||
<?= file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.js') ?>
|
||||
</script>
|
||||
</head>
|
||||
<body onload="init()">
|
||||
|
||||
<!-- Header -->
|
||||
<div class="header">
|
||||
<div class="container">
|
||||
<h1><?= esc($title), esc($exception->getCode() ? ' #' . $exception->getCode() : '') ?></h1>
|
||||
<p>
|
||||
<?= nl2br(esc($exception->getMessage())) ?>
|
||||
<a href="https://www.duckduckgo.com/?q=<?= urlencode($title . ' ' . preg_replace('#\'.*\'|".*"#Us', '', $exception->getMessage())) ?>"
|
||||
rel="noreferrer" target="_blank">search →</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Source -->
|
||||
<div class="container">
|
||||
<p><b><?= esc(static::cleanPath($file, $line)) ?></b> at line <b><?= esc($line) ?></b></p>
|
||||
|
||||
<?php if (is_file($file)) : ?>
|
||||
<div class="source">
|
||||
<?= static::highlightFile($file, $line, 15); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<ul class="tabs" id="tabs">
|
||||
<li><a href="#backtrace">Backtrace</a></li>
|
||||
<li><a href="#server">Server</a></li>
|
||||
<li><a href="#request">Request</a></li>
|
||||
<li><a href="#response">Response</a></li>
|
||||
<li><a href="#files">Files</a></li>
|
||||
<li><a href="#memory">Memory</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="tab-content">
|
||||
|
||||
<!-- Backtrace -->
|
||||
<div class="content" id="backtrace">
|
||||
|
||||
<ol class="trace">
|
||||
<?php foreach ($trace as $index => $row) : ?>
|
||||
|
||||
<li>
|
||||
<p>
|
||||
<!-- Trace info -->
|
||||
<?php if (isset($row['file']) && is_file($row['file'])) :?>
|
||||
<?php
|
||||
if (isset($row['function']) && in_array($row['function'], ['include', 'include_once', 'require', 'require_once'], true)) {
|
||||
echo esc($row['function'] . ' ' . static::cleanPath($row['file']));
|
||||
} else {
|
||||
echo esc(static::cleanPath($row['file']) . ' : ' . $row['line']);
|
||||
}
|
||||
?>
|
||||
<?php else : ?>
|
||||
{PHP internal code}
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- Class/Method -->
|
||||
<?php if (isset($row['class'])) : ?>
|
||||
— <?= esc($row['class'] . $row['type'] . $row['function']) ?>
|
||||
<?php if (! empty($row['args'])) : ?>
|
||||
<?php $args_id = $error_id . 'args' . $index ?>
|
||||
( <a href="#" onclick="return toggle('<?= esc($args_id, 'attr') ?>');">arguments</a> )
|
||||
<div class="args" id="<?= esc($args_id, 'attr') ?>">
|
||||
<table cellspacing="0">
|
||||
|
||||
<?php
|
||||
$params = null;
|
||||
// Reflection by name is not available for closure function
|
||||
if (substr($row['function'], -1) !== '}') {
|
||||
$mirror = isset($row['class']) ? new \ReflectionMethod($row['class'], $row['function']) : new \ReflectionFunction($row['function']);
|
||||
$params = $mirror->getParameters();
|
||||
}
|
||||
|
||||
foreach ($row['args'] as $key => $value) : ?>
|
||||
<tr>
|
||||
<td><code><?= esc(isset($params[$key]) ? '$' . $params[$key]->name : "#{$key}") ?></code></td>
|
||||
<td><pre><?= esc(print_r($value, true)) ?></pre></td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
|
||||
</table>
|
||||
</div>
|
||||
<?php else : ?>
|
||||
()
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (! isset($row['class']) && isset($row['function'])) : ?>
|
||||
— <?= esc($row['function']) ?>()
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
|
||||
<!-- Source? -->
|
||||
<?php if (isset($row['file']) && is_file($row['file']) && isset($row['class'])) : ?>
|
||||
<div class="source">
|
||||
<?= static::highlightFile($row['file'], $row['line']) ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</li>
|
||||
|
||||
<?php endforeach; ?>
|
||||
</ol>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Server -->
|
||||
<div class="content" id="server">
|
||||
<?php foreach (['_SERVER', '_SESSION'] as $var) : ?>
|
||||
<?php
|
||||
if (empty($GLOBALS[$var]) || ! is_array($GLOBALS[$var])) {
|
||||
continue;
|
||||
} ?>
|
||||
|
||||
<h3>$<?= esc($var) ?></h3>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Key</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($GLOBALS[$var] as $key => $value) : ?>
|
||||
<tr>
|
||||
<td><?= esc($key) ?></td>
|
||||
<td>
|
||||
<?php if (is_string($value)) : ?>
|
||||
<?= esc($value) ?>
|
||||
<?php else: ?>
|
||||
<pre><?= esc(print_r($value, true)) ?></pre>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php endforeach ?>
|
||||
|
||||
<!-- Constants -->
|
||||
<?php $constants = get_defined_constants(true); ?>
|
||||
<?php if (! empty($constants['user'])) : ?>
|
||||
<h3>Constants</h3>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Key</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($constants['user'] as $key => $value) : ?>
|
||||
<tr>
|
||||
<td><?= esc($key) ?></td>
|
||||
<td>
|
||||
<?php if (is_string($value)) : ?>
|
||||
<?= esc($value) ?>
|
||||
<?php else: ?>
|
||||
<pre><?= esc(print_r($value, true)) ?></pre>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<!-- Request -->
|
||||
<div class="content" id="request">
|
||||
<?php $request = \Config\Services::request(); ?>
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="width: 10em">Path</td>
|
||||
<td><?= esc($request->getUri()) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>HTTP Method</td>
|
||||
<td><?= esc($request->getMethod(true)) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>IP Address</td>
|
||||
<td><?= esc($request->getIPAddress()) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: 10em">Is AJAX Request?</td>
|
||||
<td><?= $request->isAJAX() ? 'yes' : 'no' ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Is CLI Request?</td>
|
||||
<td><?= $request->isCLI() ? 'yes' : 'no' ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Is Secure Request?</td>
|
||||
<td><?= $request->isSecure() ? 'yes' : 'no' ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>User Agent</td>
|
||||
<td><?= esc($request->getUserAgent()->getAgentString()) ?></td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<?php $empty = true; ?>
|
||||
<?php foreach (['_GET', '_POST', '_COOKIE'] as $var) : ?>
|
||||
<?php
|
||||
if (empty($GLOBALS[$var]) || ! is_array($GLOBALS[$var])) {
|
||||
continue;
|
||||
} ?>
|
||||
|
||||
<?php $empty = false; ?>
|
||||
|
||||
<h3>$<?= esc($var) ?></h3>
|
||||
|
||||
<table style="width: 100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Key</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($GLOBALS[$var] as $key => $value) : ?>
|
||||
<tr>
|
||||
<td><?= esc($key) ?></td>
|
||||
<td>
|
||||
<?php if (is_string($value)) : ?>
|
||||
<?= esc($value) ?>
|
||||
<?php else: ?>
|
||||
<pre><?= esc(print_r($value, true)) ?></pre>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php endforeach ?>
|
||||
|
||||
<?php if ($empty) : ?>
|
||||
|
||||
<div class="alert">
|
||||
No $_GET, $_POST, or $_COOKIE Information to show.
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php $headers = $request->getHeaders(); ?>
|
||||
<?php if (! empty($headers)) : ?>
|
||||
|
||||
<h3>Headers</h3>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Header</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($headers as $value) : ?>
|
||||
<?php
|
||||
if (empty($value)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (! is_array($value)) {
|
||||
$value = [$value];
|
||||
} ?>
|
||||
<?php foreach ($value as $h) : ?>
|
||||
<tr>
|
||||
<td><?= esc($h->getName(), 'html') ?></td>
|
||||
<td><?= esc($h->getValueLine(), 'html') ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<!-- Response -->
|
||||
<?php
|
||||
$response = \Config\Services::response();
|
||||
$response->setStatusCode(http_response_code());
|
||||
?>
|
||||
<div class="content" id="response">
|
||||
<table>
|
||||
<tr>
|
||||
<td style="width: 15em">Response Status</td>
|
||||
<td><?= esc($response->getStatusCode() . ' - ' . $response->getReason()) ?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php $headers = $response->getHeaders(); ?>
|
||||
<?php if (! empty($headers)) : ?>
|
||||
<?php natsort($headers) ?>
|
||||
|
||||
<h3>Headers</h3>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Header</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($headers as $name => $value) : ?>
|
||||
<tr>
|
||||
<td><?= esc($name, 'html') ?></td>
|
||||
<td><?= esc($response->getHeaderLine($name), 'html') ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<!-- Files -->
|
||||
<div class="content" id="files">
|
||||
<?php $files = get_included_files(); ?>
|
||||
|
||||
<ol>
|
||||
<?php foreach ($files as $file) :?>
|
||||
<li><?= esc(static::cleanPath($file)) ?></li>
|
||||
<?php endforeach ?>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<!-- Memory -->
|
||||
<div class="content" id="memory">
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Memory Usage</td>
|
||||
<td><?= esc(static::describeMemory(memory_get_usage(true))) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: 12em">Peak Memory Usage:</td>
|
||||
<td><?= esc(static::describeMemory(memory_get_peak_usage(true))) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Memory Limit:</td>
|
||||
<td><?= esc(ini_get('memory_limit')) ?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
</div> <!-- /tab-content -->
|
||||
|
||||
</div> <!-- /container -->
|
||||
|
||||
<div class="footer">
|
||||
<div class="container">
|
||||
|
||||
<p>
|
||||
Displayed at <?= esc(date('H:i:sa')) ?> —
|
||||
PHP: <?= esc(PHP_VERSION) ?> —
|
||||
CodeIgniter: <?= esc(\CodeIgniter\CodeIgniter::CI_VERSION) ?>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,25 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
<title>Whoops!</title>
|
||||
|
||||
<style type="text/css">
|
||||
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container text-center">
|
||||
|
||||
<h1 class="headline">Whoops!</h1>
|
||||
|
||||
<p class="lead">We seem to have hit a snag. Please try again later...</p>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,242 @@
|
||||
<div id="Content">
|
||||
<div class="content_wrapper clearfix">
|
||||
<div class="sections_group">
|
||||
<div class="entry-content">
|
||||
<div class="section mcb-section mcb-section-xgz5ju3kc bg-cover" style="padding-top:0px;padding-bottom:0px;background-image:url(/assets/images/insurance3-subheader1.jpg);background-repeat:no-repeat;background-position:center bottom;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-utz74m51s one valign-top clearfix" style="padding:30% 0 10%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-wrwkbkxmp one column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 52% 0 0;">
|
||||
<h2>About us</h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
With experience in software development, implementation, quality assurance and software support since 2000, we build our designs on deep understanding of all business and functional requirements as well as ambiguous nuances of practical business workflows
|
||||
We offer comprehensive software services that cover the full development and implementation cycle of your IT project including a full range of consulting services.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-oevvd681l" style="padding-top:110px;padding-bottom:170px;background-color:#e6eef8">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-csl8x0xjn one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-77lg20pwl three-fourth column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h6 class="insurance3-heading">Working Strategy</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2>How we work with you to achieve your goals.</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-dg6ip8mmw one-second valign-top clearfix" style="padding:0 5% 0 0">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-mhemcei5w one column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<p>
|
||||
We listen. We hear what you want, your budget for the timeline, your immediate goal, all you desire to share for positive outcome succeed. It is your Process, and we are attentive. Technical words should be less worrisome; talk to us in your most convenient explicit words.
|
||||
</p>
|
||||
<p>
|
||||
We develop a plan. Combine your views with our experience to achieve your goals. We acknowledge your opinions, perspectives, desires, and outcomes. All these in a fold with one-on-one communication so that you can include or improve these ideas. Conclusions to product outcomes are all you! </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-6b8il9ckk one-second valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-mp1jtxfai one column_column column-margin-10px">
|
||||
<div class="column_attr clearfix" style>
|
||||
<p>
|
||||
We deliver what you want. You get absolutely what directives we receive from you, including specific tools required. Efficiency is key to your taste. At the end of the project, you'll award yourself a big smile for us meeting your expectations.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-42hhv43at one column_column column-margin-10px">
|
||||
<div class="column_attr clearfix" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
<a href="/contact">Contact us for detail</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-4xnooe8kg" style="padding-top:0px;padding-bottom:0px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-j0s15za6x one valign-top move-up clearfix" style="margin-top:-140px" data-mobile="no-up">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-g9b2jpgyd one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/insurance3-about-pic1.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div class="section mcb-section mcb-section-qdp7w6yvp" style="padding-top:70px;padding-bottom:70px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-rqyq5e3bu one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-kneolrsd0 one-fourth column_chart">
|
||||
<div class="chart_box">
|
||||
<div class="chart" data-percent="78" data-bar-color="#fc2820">
|
||||
<div class="num">
|
||||
78%
|
||||
</div>
|
||||
</div>
|
||||
<p>
|
||||
<big>Lorem ipsum</big>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-915z4ls9c one-fourth column_chart">
|
||||
<div class="chart_box">
|
||||
<div class="chart" data-percent="92" data-bar-color="#fc2820">
|
||||
<div class="num">
|
||||
92%
|
||||
</div>
|
||||
</div>
|
||||
<p>
|
||||
<big>Quisque lorem </big>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-vijrybn5m one-fourth column_chart">
|
||||
<div class="chart_box">
|
||||
<div class="chart" data-percent="64" data-bar-color="#fc2820">
|
||||
<div class="num">
|
||||
64%
|
||||
</div>
|
||||
</div>
|
||||
<p>
|
||||
<big>Faucibus</big>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-ofieg3b3k one-fourth column_chart">
|
||||
<div class="chart_box">
|
||||
<div class="chart" data-percent="98" data-bar-color="#fc2820">
|
||||
<div class="num">
|
||||
98%
|
||||
</div>
|
||||
</div>
|
||||
<p>
|
||||
<big>Nulla ipsum</big>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div class="section mcb-section mcb-section-j8afk5vf5 highlight-right bg-cover" style="padding-top:0px;padding-bottom:0px;background-image:url(/assets/images/insurance3-sectionbg2.jpg);background-repeat:no-repeat;background-position:left top;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-r5pxtgxi6 one-second valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-q4nh053p5 one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 400px;">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-outwi7du7 one-second valign-top clearfix" style="padding:110px 4% 70px 8%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-t3l9wr3um one column_column column-margin-30px">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h6 class="insurance3-heading2">Your Solution</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2>We are here to understand your solution.</h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
We are capable of listening to your creativity to find the technology intersection and help you craft a path to realization. No idea is turned down. We are fully committed to helping you get moving.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-me4cqkp2o one column_button">
|
||||
<a class="button button_size_2 button_theme button_js" href="/contact"><span class="button_label"> Contact us</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-x4i8x457u" style="padding-top:110px;padding-bottom:70px;background-color:">
|
||||
<div class="section-decoration top" style="background-image:url(about-us/theme.html);height:px"></div>
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-2zqmrhmq5 one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-1gkomr9nz three-fourth column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h6 class="insurance3-heading2">Detail Solution</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2>Sometimes it is just a design depth problem.</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-8o6755si7 one-second column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 7% 0 0;">
|
||||
<p>
|
||||
Your project may be existing with some problems or upgrade needs. These needs usually emanate for missing solution analysis or changing landscape against your current implementation.
|
||||
</p>
|
||||
<p>
|
||||
Our year of experience comes into play. We can work with you to re-evaluate your current solution. Derive a new path of fixed that will last with your immediate goals. We do all these with a team of in house and collaborating experts across the globe.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-260s5luk9 one-second column_column" style="background-color:red; height:300px; background-image:url(/assets/images/insurance3-sectionbg2.jpg); background-size:cover;" >
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-5056eef7e full-width bg-cover" style="padding-top:110px;padding-bottom:0px;background-image:url(/assets/images/insurance3-sectionbg1.jpg);background-repeat:no-repeat;background-position:center bottom;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-a81d0edb7 one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-7351d929f one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h6 class="insurance3-heading">CONTACT</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2><?=SITE_CONTACT_HEAD?></h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
<?=SITE_CONTACT_OTHER_TXT?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-e10161fe6 one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 30px;">
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-b5b0c943a one column_button">
|
||||
<div class="button_align align_center">
|
||||
<a class="button button_size_2 button_theme button_js" href="/contact"><span class="button_label">CONTACT US NOW</span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-90d7a9928 one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 50px;">
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-6945733c6 one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid aligncenter no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/insurance3-home-pic2.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,107 @@
|
||||
<div id="Content">
|
||||
<div class="content_wrapper clearfix">
|
||||
<div class="sections_group">
|
||||
<div class="entry-content">
|
||||
<div class="section mcb-section mcb-section-xgz5ju3kc bg-cover" style="padding-top:0px;padding-bottom:0px;background-image:url(/assets/images/insurance3-subheader1.jpg);background-repeat:no-repeat;background-position:center bottom;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-utz74m51s one valign-top clearfix" style="padding:30% 0 10%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-wrwkbkxmp one column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 52% 0 0;">
|
||||
<h2>Blog Articles</h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
We have a few articles based on popularity read from our bog. You can always visit our blog at <a href="https://blog.chiefsoft.com">https://blog.chiefsoft.com</a> for more information.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-lsgo36z5s" style="padding-top:110px;padding-bottom:70px;background-image:url(/assets/images/insurance3-sectionbg3.png);background-repeat:repeat-x;background-position:center top;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-lr1bo58h7 one-second valign-middle clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-69sgk7sg1 one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid aligncenter no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/insurance3-articles-pic1.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-1mhmri34p one-second valign-middle clearfix" style="padding:0 0 0 5%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-2ph3gb2bh one column_column column-margin-30px">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h6 class="insurance3-heading">Featured</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2><?php echo $blog_featured["post_title"]; ?></h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
<?php echo substr(trim($blog_featured["post_content"]), 0, 250); ?>...
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-cgwfx569j one column_button">
|
||||
<a class="button button_size_2 button_theme button_js" href="https://blog.chiefsoft.com/?p=<?php echo $blog_featured["id"]; ?>"><span class="button_label">READ MORE</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-jisrg8r6s" style="padding-top:0px;padding-bottom:40px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-l23o7r81b one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-sact5yv9g three-fourth column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h2>Recent Interesting Blog Posts.</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section ">
|
||||
<div class="section_wrapper clearfix">
|
||||
<div class="column one column_blog">
|
||||
<div class="blog_wrapper isotope_wrapper">
|
||||
<div class="posts_group lm_wrapper grid col-3">
|
||||
<?php
|
||||
/*
|
||||
print_r( $blog_array );
|
||||
|
||||
|
||||
echo "Ameye";
|
||||
$total_article = 12;
|
||||
for ($ii = 0; $ii < $total_article; $ii++) {
|
||||
echo $ii;
|
||||
include("blog_unit.php");
|
||||
}
|
||||
*/
|
||||
// print_r( $blog_array );
|
||||
foreach ($blog_array as $blgr) {
|
||||
|
||||
// print_r($blgr);
|
||||
$title = $blgr["post_title"];
|
||||
$content = substr($blgr["post_content"], 0, 100);
|
||||
$post_date = $blgr["post_date"];
|
||||
$blog_id = $blgr["id"];
|
||||
$comment_count = $blgr["comment_count"];
|
||||
$meta_value = $blgr["meta_value"];
|
||||
include("blog_unit.php");
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
$blog_link="https://blog.chiefsoft.com/?p=".$blog_id;
|
||||
$blog_image = "https://blog.chiefsoft.com/wp-content/uploads/".$meta_value; //2018/06/demo-image-00003-380x220.jpg"; ///assets/images/insurance3-articles-post1-960x720.jpg
|
||||
?>
|
||||
<div class="post-item isotope-item clearfix post-56 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized" style>
|
||||
<div class="date_label">
|
||||
<?php echo $post_date; ?>
|
||||
</div>
|
||||
<div class="image_frame post-photo-wrapper scale-with-grid image">
|
||||
<div class="image_wrapper">
|
||||
<a href="<?php echo $blog_link;?>">
|
||||
<div class="mask"></div><img src="<?php echo $blog_image;?>" class="scale-with-grid wp-post-image" alt></a>
|
||||
<div class="image_links double">
|
||||
<a href="<?php echo $blog_link;?>" class="zoom" rel="prettyphoto"><i class="icon-search"></i></a><a href="<?php echo $blog_link;?>" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post-desc-wrapper bg-" style>
|
||||
<div class="post-desc">
|
||||
<div class="post-head">
|
||||
<div class="post-meta clearfix">
|
||||
<div class="author-date">
|
||||
<span class="date"><i class="icon-clock"></i> <span class="post-date updated"><?php echo $post_date; ?></span></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post-title">
|
||||
<h2 class="entry-title"><a href="<?php echo $blog_link;?>"><?php echo $title;?></a></h2>
|
||||
</div>
|
||||
<div class="post-excerpt">
|
||||
<?php echo $content; ?>
|
||||
</div>
|
||||
<div class="post-footer">
|
||||
<div class="button-love">
|
||||
<span class="love-text">Do you like it?</span><a href="#" class="mfn-love " data-id="56"><span class="icons-wrapper"><i class="icon-heart-empty-fa"></i><i class="icon-heart-fa"></i></span><span class="label"><?php echo $comment_count;?></span></a>
|
||||
</div>
|
||||
<div class="post-links">
|
||||
<i class="icon-doc-text"></i><a href="<?php echo $blog_link;?>" class="post-more">Read more</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,150 @@
|
||||
|
||||
|
||||
<div id="Content">
|
||||
<div class="content_wrapper clearfix">
|
||||
<div class="sections_group">
|
||||
<div class="entry-content">
|
||||
<div class="section mcb-section mcb-section-3ccb66826 bg-cover" style="padding-top:0px;padding-bottom:0px;background-image:url(/assets/images/insurance3-subheader4.jpg);background-repeat:no-repeat;background-position:center bottom;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-478793fd8 one valign-top clearfix" style="padding:30% 0 10%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-8c3e5fcd5 one column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 52% 0 0;">
|
||||
<h2>Contact us</h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
Whatever your objective, we’d love to design and build your next big idea or lend a hand on an existing one. We invite your questions, comments, or concerns. If you just want to spread love and give inspiration, we will accept those as well.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-337lh2y1g" style="padding-top:110px;padding-bottom:110px;background-image:url(/assets/images/insurance3-sectionbg3.png);background-repeat:repeat-x;background-position:center top;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-e51rowvod one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-vi3czm21z one-third column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h6 class="insurance3-heading">CONTACT INFO</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p>
|
||||
Phone /Email
|
||||
</p>
|
||||
<h4> <?=SITE_PHONE?></h4>
|
||||
<p><a href="#"><?=SITE_EMAIL?></a></p>
|
||||
<!-- p>
|
||||
E-mail
|
||||
</p -->
|
||||
<h4></h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-rkzsodi8q one-third column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h6 class="insurance3-heading">ADDRESS</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p>
|
||||
<?=SITE_NAME?>
|
||||
</p>
|
||||
<h4>
|
||||
<?=SITE_ADDRL1?>,
|
||||
<br> <?=SITE_ADDRL2?>,
|
||||
<br> USA
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-c7lb6ye7o one-third column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h6 class="insurance3-heading">SOCIAL PLATFORM</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p style="font-size: 60px;">
|
||||
<a href="<?=SITE_TWITTER?>"><i class="icon-twitter-circled"></i></a><a href="<?=SITE_FACEBOOK?>"><i class="icon-facebook-circled"></i></a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-047c4613c" style="padding-top:110px;padding-bottom:70px;background-color:#e6eef8">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-ec22ff19f one-second valign-top move-up clearfix" style="margin-top:-150px" data-mobile="no-up">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-ac8a0a65e one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/insurance3-contact-pic1.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-10dda93a6 one-second valign-top clearfix" style="padding:0 0 0 4%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-8799a4a0c one column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h6 class="insurance3-heading">Always Here</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2>Partnership, Outsourcing or Consulting</h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
|
||||
We specialize in Linux and all UNIX variants, Microsoft Windows programming using .NET; numerous database servers including Microsoft SQL Server, MySQL, and others; a wide range of languages, including C/C++/C# and PHP with various web servers, including Apache, IIS/ASP.NET, and others.
|
||||
</p>
|
||||
<p>
|
||||
We have produced a wide range of mobile, desktop, and web-based solutions for a diverse set of customers over the past twenty years. If you need a different technology or environment listed either above or in the sample projects described on this site, please contact us!
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="column mcb-column mcb-item-0ad9270b3 one column_button">
|
||||
<a class="button button_size_2 button_theme button_js" href="/services"><span class="button_label">CHECK OUR SERVICES</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-cf63py2da" style="padding-top:110px;padding-bottom:70px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-rbchf3tv7 one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-0jpb3qyfl one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h2>Send us a message</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-3ygm0ssk6 one column_column">
|
||||
<div class="column_attr clearfix align_center" style="padding:0 15%;">
|
||||
<div id="contactWrapper">
|
||||
<form id="contactform" method="POST" action="/contact">
|
||||
<!-- One Second (1/2) Column -->
|
||||
<div class="column one-second">
|
||||
<input placeholder="Your name" type="text" name="name" id="name" size="40" aria-required="true" aria-invalid="false" />
|
||||
</div>
|
||||
<!-- One Second (1/2) Column -->
|
||||
<div class="column one-second">
|
||||
<input placeholder="Your e-mail" type="email" name="email" id="email" size="40" aria-required="true" aria-invalid="false" />
|
||||
</div>
|
||||
<div class="column one">
|
||||
<input placeholder="Subject" type="text" name="subject" id="subject" size="40" aria-invalid="false" />
|
||||
</div>
|
||||
<div class="column one">
|
||||
<textarea placeholder="Message" name="body" id="body" style="width:100%;" rows="10" aria-invalid="false"></textarea>
|
||||
</div>
|
||||
<div class="column one">
|
||||
<input type="submit" value="Send A Message" id="submit" onClick="return check_values();">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,109 @@
|
||||
|
||||
<footer id="Footer" class="clearfix">
|
||||
<div class="widgets_wrapper">
|
||||
<div class="container">
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4>Contact us</h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<h5 style="margin-bottom: 5px;">Phone</h5>
|
||||
<p>
|
||||
<?=SITE_PHONE?>
|
||||
</p>
|
||||
<h5 style="margin-bottom: 5px;">E-mail</h5>
|
||||
<p>
|
||||
<a href="#"><?=SITE_EMAIL?></a>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4>Our office</h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p>
|
||||
<?=SITE_NAME?>
|
||||
</p>
|
||||
<p>
|
||||
<?=SITE_ADDRL1?>
|
||||
<br><?=SITE_ADDRL2?>
|
||||
<br>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4></h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p>
|
||||
<!-- Fusce ut velit laoreet, tempus . -->
|
||||
</p>
|
||||
<ul>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="/about">About ChiefSoft</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="https://blog.chiefsoft.com">Our Blog</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="/contact">Contact</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="https://www.chiefsoft.net/projects">Client Login</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p style="font-size: 30px;">
|
||||
<a href="<?=SITE_TWITTER?>"><i class="icon-twitter-circled"></i></a>
|
||||
<a href="<?=SITE_FACEBOOK?>"><i class="icon-facebook-circled"></i></a>
|
||||
<a href="https://www.f6s.com/olusesanameye?follow=1" title="Follow Olusesan Ameye on F6S"><i style="color:red;"class="icon-facebook-circled"></i></a>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_copy">
|
||||
<div class="container">
|
||||
<div class="column one">
|
||||
<a id="back_to_top" class="button button_js" href><i class="icon-up-open-big"></i></a>
|
||||
<div class="copyright">
|
||||
© <a target="_blank" rel="nofollow" href="/"><?=date("Y")?> ChiefSoft Works</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<div id="Side_slide" class="right dark" data->
|
||||
<div class="close-wrapper">
|
||||
<a href="#" class="close"><i class="icon-cancel-fine"></i></a>
|
||||
</div>
|
||||
<div class="extras">
|
||||
<div class="extras-wrapper"></div>
|
||||
</div>
|
||||
<div class="menu_wrapper"></div>
|
||||
</div>
|
||||
<div id="body_overlay"></div>
|
||||
|
||||
|
||||
<!-- JS -->
|
||||
<script src="/assets/js/jquery-2.1.4.min.js"></script>
|
||||
|
||||
<script src="/assets/js/mfn.menu.js"></script>
|
||||
<script src="/assets/js/jquery.plugins.js"></script>
|
||||
<script src="/assets/js/jquery.jplayer.min.js"></script>
|
||||
<script src="/assets/js/animations/animations.js"></script>
|
||||
<script src="/assets/js/translate3d.js"></script>
|
||||
<script src="/assets/js/scripts.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]><html class="no-js lt-ie10 lt-ie9"> <![endif]-->
|
||||
<!--[if IE 9]><html class="no-js lt-ie10"> <![endif]-->
|
||||
<!--[if gt IE 8]><!-->
|
||||
<html class="no-js">
|
||||
<!--<![endif]-->
|
||||
|
||||
<head>
|
||||
|
||||
<!-- Basic Page Needs -->
|
||||
<meta charset="utf-8">
|
||||
<title><?=SITE_NAME?>,<?php echo $location->city; ?> Software Development</title>
|
||||
<meta name="description" content= " ChiefSoft Works,over 20 years software development,software developers,custom software development, web and mobile development, QA services. Headquartered in Atlanta, Georgia."/>
|
||||
<meta name="author" content="ChiefSoft Works">
|
||||
|
||||
<!-- Mobile Specific Metas -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
||||
|
||||
<!-- FONTS -->
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Roboto:100,300,400,400italic,700'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Patua+One:100,300,400,400italic,700'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic,900'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=DM+Sans:100,300,400,400italic,500,700,700italic,900'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=DM+Serif+Display:100,300,400,400italic,500,700,700italic,900'>
|
||||
|
||||
<!-- CSS -->
|
||||
<link rel='stylesheet' href='/assets/css/global.css'>
|
||||
<link rel='stylesheet' href='/assets/css/structure.css'>
|
||||
<link rel='stylesheet' href='/assets/css/insurance3.css'>
|
||||
<link rel='stylesheet' href='/assets/css/custom.css'>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="page-template-default page color-custom style-default button-round layout-full-width if-zoom if-border-hide no-content-padding no-shadows header-transparent minimalist-header-no sticky-header sticky-tb-color ab-hide subheader-both-center menu-link-color menuo-no-borders logo-no-margin mobile-tb-hide mobile-side-slide mobile-mini-mr-lc tablet-sticky mobile-sticky ">
|
||||
<div id="Wrapper">
|
||||
<div id="Header_wrapper">
|
||||
<header id="Header">
|
||||
<div id="Top_bar">
|
||||
<div class="container">
|
||||
<div class="column one">
|
||||
<?php
|
||||
include("top_menu.php");
|
||||
?>
|
||||
<div class="top_bar_right">
|
||||
<div class="top_bar_right_wrapper">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
@@ -0,0 +1,528 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]><html class="no-js lt-ie10 lt-ie9"> <![endif]-->
|
||||
<!--[if IE 9]><html class="no-js lt-ie10"> <![endif]-->
|
||||
<!--[if gt IE 8]><!-->
|
||||
<html class="no-js">
|
||||
<!--<![endif]-->
|
||||
|
||||
<head>
|
||||
<?php //echo $location->city; ?>
|
||||
<!-- Basic Page Needs -->
|
||||
<meta charset="utf-8">
|
||||
<title><?= SITE_NAME ?>,<?php echo isset($location->city) ? $location->city : ''; ?> Software Development</title>
|
||||
<meta name="description" content="ChiefSoft Works with 15 years in software development,software developers,custom software development, web and mobile development, QA services. Headquartered in Atlanta, Georgia."/>
|
||||
<meta name="author" content="ChiefSoft Works">
|
||||
|
||||
<!-- Mobile Specific Metas -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
||||
|
||||
<!-- FONTS -->
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Roboto:100,300,400,400italic,700'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Patua+One:100,300,400,400italic,700'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic,900'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=DM+Sans:100,300,400,400italic,500,700,700italic,900'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=DM+Serif+Display:100,300,400,400italic,500,700,700italic,900'>
|
||||
|
||||
<!-- CSS -->
|
||||
<link rel='stylesheet' href='/assets/css/global.css'>
|
||||
<link rel='stylesheet' href='/assets/css/structure.css'>
|
||||
<link rel='stylesheet' href='/assets/css/insurance3.css'>
|
||||
<link rel='stylesheet' href='/assets/css/custom.css'>
|
||||
|
||||
<!-- Revolution Slider -->
|
||||
<link rel="stylesheet" href="/assets/plugins/rs-plugin-6.custom/css/rs6.css">
|
||||
|
||||
</head>
|
||||
|
||||
<body class="home page-template-default page template-slider color-custom style-default button-round layout-full-width if-zoom if-border-hide no-content-padding no-shadows header-transparent minimalist-header-no sticky-header sticky-tb-color ab-hide subheader-both-center menu-link-color menuo-no-borders logo-no-margin mobile-tb-hide mobile-side-slide mobile-mini-mr-lc tablet-sticky mobile-sticky ">
|
||||
<div id="Wrapper">
|
||||
<div id="Header_wrapper">
|
||||
<header id="Header">
|
||||
<div id="Top_bar">
|
||||
<div class="container">
|
||||
<div class="column one">
|
||||
<?php
|
||||
include("top_menu.php");
|
||||
?>
|
||||
<div class="top_bar_right">
|
||||
<div class="top_bar_right_wrapper">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mfn-main-slider" id="mfn-rev-slider">
|
||||
<p class="rs-p-wp-fix"></p>
|
||||
<rs-module-wrap id="rev_slider_1_1_wrapper" data-source="gallery" style="background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;">
|
||||
<rs-module id="rev_slider_1_1" style="display:none;" data-version="6.1.2">
|
||||
<rs-slides>
|
||||
<rs-slide data-key="rs-1" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;">
|
||||
<img src="/assets/images/chiefsoft-slider-1.jpg" class="rev-slidebg" data-no-retina>
|
||||
<rs-layer id="slider-1-slide-1-layer-2" data-type="text" data-color="#272b5c" data-rsp_ch="on" data-xy="x:110px;y:200px;" data-text="w:normal;s:60;l:70;" data-frame_0="x:50;" data-frame_1="st:200;sp:1000;sR:200;" data-frame_999="o:0;st:w;sR:7800;" style="z-index:9;font-family:DM Serif Display;">
|
||||
Design, Development
|
||||
<br> & Management of
|
||||
<br> Enterprise Solutions
|
||||
</rs-layer>
|
||||
<rs-layer id="slider-1-slide-1-layer-3" data-type="text" data-color="#a8aabe" data-rsp_ch="on" data-xy="x:111px;y:412px;" data-text="w:normal;s:22;l:35;" data-frame_0="x:50;" data-frame_1="st:300;sp:1000;sR:300;" data-frame_999="o:0;st:w;sR:7700;" style="z-index:10;font-family:DM Sans;">
|
||||
We are fully equipped to deliver first-class
|
||||
<br> solution development services. We improve
|
||||
<br> your business efficiency and security at every step.
|
||||
</rs-layer>
|
||||
<a href="/services">
|
||||
<rs-layer id="slider-1-slide-1-layer-4" class="rev-btn" data-type="button" data-color="#272b5c" data-rsp_ch="on" data-xy="x:306px;y:559px;" data-text="w:normal;s:18;l:60;ls:0px;fw:500;" data-dim="minh:0px;" data-padding="r:40;l:40;" data-border="bor:30px,30px,30px,30px;"
|
||||
data-frame_0="x:50;" data-frame_1="st:500;sp:1000;sR:500;" data-frame_999="o:0;st:w;sR:7500;" data-frame_hover="c:#272b5c;bgc:#ced8e5;bor:30px,30px,30px,30px;sp:200;e:Power1.easeInOut;" style="z-index:12;background-color:#e6eef8;font-family:DM Sans;">
|
||||
OUR SERVICES
|
||||
</rs-layer>
|
||||
</a>
|
||||
<a href="/about">
|
||||
<rs-layer id="slider-1-slide-1-layer-5" class="rev-btn" data-type="button" data-color="#ffffff" data-rsp_ch="on" data-xy="x:101px;y:558px;" data-text="w:normal;s:18;l:60;ls:0px;fw:500;" data-dim="minh:0px;" data-padding="r:40;l:40;" data-border="bor:30px,30px,30px,30px;"
|
||||
data-frame_0="x:50;" data-frame_1="st:400;sp:1000;sR:400;" data-frame_999="o:0;st:w;sR:7600;" data-frame_hover="bgc:#111435;bor:30px,30px,30px,30px;sp:200;e:Power1.easeInOut;" style="z-index:11;background-color:#272b5c;font-family:DM Sans;">
|
||||
ABOUT US
|
||||
</rs-layer>
|
||||
</a>
|
||||
</rs-slide>
|
||||
|
||||
</rs-slides>
|
||||
|
||||
|
||||
<rs-progress class="rs-bottom" style="visibility: hidden !important;"></rs-progress>
|
||||
</rs-module>
|
||||
</rs-module-wrap>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
<div id="Content">
|
||||
<div class="content_wrapper clearfix">
|
||||
<div class="sections_group">
|
||||
<div class="entry-content">
|
||||
<div class="section mcb-section mcb-section-z569pxvnx" style="padding-top:110px;padding-bottom:110px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-e98u93utt one-fourth valign-top clearfix" style="padding:0 3%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-tdm7aj5sa one column_image">
|
||||
<div class="image_frame image_item scale-with-grid aligncenter no_border hover-disable">
|
||||
<div class="image_wrapper">
|
||||
<a href="#">
|
||||
<div class="mask"></div><img class="scale-with-grid" src="/assets/images/insurance3-home-icon1.png"></a>
|
||||
<div class="image_links ">
|
||||
<a href="#" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-ua6kvic9s one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h3>Custom
|
||||
<br> Solutions
|
||||
</h3>
|
||||
<p>
|
||||
Bespoke Solutions, Manage Design & Workflows. Cost-Effective.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-km0sn4j6n one-fourth valign-top clearfix" style="padding:0 3%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-yg89bwogw one column_image">
|
||||
<div class="image_frame image_item scale-with-grid aligncenter no_border hover-disable">
|
||||
<div class="image_wrapper">
|
||||
<a href="#">
|
||||
<div class="mask"></div><img class="scale-with-grid" src="/assets/images/chiefsoft-mobiledev-icon.png"></a>
|
||||
<div class="image_links ">
|
||||
<a href="#" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-aa77feapk one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h3>Mobile
|
||||
<br> Applications
|
||||
</h3>
|
||||
<p>
|
||||
App Design, Collaboration, Product Building & Automated testing
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-75qcr7anb one-fourth valign-top clearfix" style="padding:0 3%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-igwfothnd one column_image">
|
||||
<div class="image_frame image_item scale-with-grid aligncenter no_border hover-disable">
|
||||
<div class="image_wrapper">
|
||||
<a href="#">
|
||||
<div class="mask"></div><img class="scale-with-grid" src="/assets/images/insurance3-home-icon3.png"></a>
|
||||
<div class="image_links ">
|
||||
<a href="#" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-626rf5lk0 one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h3>Online
|
||||
<br> Security
|
||||
</h3>
|
||||
<p>
|
||||
Security Immersed team of experts for you at all levels of the project.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-9w8o9n48o one-fourth valign-top clearfix" style="padding:0 3%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-jm6anyxht one column_image">
|
||||
<div class="image_frame image_item scale-with-grid aligncenter no_border hover-disable">
|
||||
<div class="image_wrapper">
|
||||
<a href="#">
|
||||
<div class="mask"></div><img class="scale-with-grid" src="/assets/images/chiefsoft-ai-icon.png"></a>
|
||||
<div class="image_links ">
|
||||
<a href="#" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-l4npb1o7c one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h3>Artificial
|
||||
<br> Intelligence
|
||||
</h3>
|
||||
<p>
|
||||
Custom AI Solution: Situation analysis, Specific built models.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-wjiyl5j4w" style="padding-top:110px;padding-bottom:70px;background-color:#e6eef8">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-o0zzfcfv1 one-second valign-top clearfix" style="padding:0 4% 0 0">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-eu8cujtqs one column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h6 class="insurance3-heading">ABOUT US</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2>About ChiefSoft</h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
ChiefSoft Works provides expert system design and software consulting services. Whether you are looking to buy or build a software program for your business, our professional systems expert advisory services will include-
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-5c1gcv2zi one column_column column-margin-10px">
|
||||
<div class="column_attr clearfix" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
Your Scenario-Targeted Analysis
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-5c1gcv2zi one column_column column-margin-10px">
|
||||
<div class="column_attr clearfix" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
General & Customized Solutions
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-01gj0ld84 one column_column column-margin-10px">
|
||||
<div class="column_attr clearfix mobile_align_center" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
Transactions & Platform Security
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-xer4vbg70 one column_column">
|
||||
<div class="column_attr clearfix" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
Efficiency, Loyalty and Marketing Goals
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-7mxcewd8r one column_button">
|
||||
<a class="button button_size_2 button_theme button_js" href="/about"><span class="button_label">READ MORE ABOUT US</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-8g8p4dxos one-second valign-top move-up clearfix" style="margin-top:-150px" data-mobile="no-up">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-vmoe0detp one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/about-us-home.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-x4mnvmffb" style="padding-top:110px;padding-bottom:80px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-c7wz6bc4u two-third valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-45zl19vod one column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h2>Technology Blog</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-0a68ujf6p one-third valign-top clearfix" style="padding:10px 0 0">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-lykfyn4yj one column_button">
|
||||
<div class="button_align align_right">
|
||||
<a class="button button_size_2 button_theme button_js" href="/blog"><span class="button_label">VIEW ALL ARTICLES</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-txr96dcf0 one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-sjzk4qkg3 one column_blog_teaser">
|
||||
<div class="blog-teaser ">
|
||||
<ul class="teaser-wrapper">
|
||||
<li class="post-56 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">
|
||||
<a href="https://blog.chiefsoft.com/category/online-security">
|
||||
|
||||
<div class="photo-wrapper scale-with-grid"><img src="/assets/images/blog-post-security.jpg" class="scale-with-grid wp-post-image" alt>
|
||||
</div>
|
||||
<div class="desc-wrapper">
|
||||
<div class="desc">
|
||||
<div class="post-meta clearfix">
|
||||
<span class="post-date">August 10, 2019</span></span>
|
||||
</div>
|
||||
<div class="post-title">
|
||||
<h3><a href="https://blog.chiefsoft.com/category/online-security">Online Security</a></h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
<li class="post-53 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">
|
||||
<a href="https://blog.chiefsoft.com/category/network/"> <div class="photo-wrapper scale-with-grid"><img src="/assets/images/blog-post-1-1024x1200.jpg" class="scale-with-grid wp-post-image" alt>
|
||||
</div>
|
||||
<div class="desc-wrapper">
|
||||
<div class="desc">
|
||||
<div class="post-meta clearfix">
|
||||
<span class="post-date">November 10, 2019</span></span>
|
||||
</div>
|
||||
<div class="post-title">
|
||||
<h4><a href="https://blog.chiefsoft.com/category/network/">Networking</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div></a>
|
||||
</li>
|
||||
<li class="post-51 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">
|
||||
<a href="https://blog.chiefsoft.com/category/machine-learning/">
|
||||
<div class="photo-wrapper scale-with-grid"><img src="/assets/images/blog-post-1024x1200.jpg" class="scale-with-grid wp-post-image" alt>
|
||||
</div>
|
||||
<div class="desc-wrapper">
|
||||
<div class="desc">
|
||||
<div class="post-meta clearfix">
|
||||
<span class="post-date">October 23, 2019</span></span>
|
||||
</div>
|
||||
<div class="post-title">
|
||||
<h4><a href="https://blog.chiefsoft.com/category/machine-learning/">Artificial intelligence</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-sohxkfeuw full-width bg-cover" style="padding-top:110px;padding-bottom:0px;background-image:url(/assets/images/insurance3-sectionbg1.jpg);background-repeat:no-repeat;background-position:center bottom;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-zfxjf2j4k one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-450wcx60g one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h6 class="insurance3-heading">CONTACT</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2><?= SITE_CONTACT_HEAD ?></h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
<?= SITE_CONTACT_OTHER_TXT ?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-znqlqmd79 one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 30px;">
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-8vv2dxcps one column_button">
|
||||
<div class="button_align align_center">
|
||||
<a class="button button_size_2 button_theme button_js" href="/contact"><span class="button_label">CONTACT US NOW</span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-nqhwq7woi one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 50px;">
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-i24q0gf1v one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid aligncenter no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/insurance3-home-pic2.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer id="Footer" class="clearfix">
|
||||
<div class="widgets_wrapper">
|
||||
<div class="container">
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4>Contact us</h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<h5 style="margin-bottom: 5px;">Phone</h5>
|
||||
<p>
|
||||
<?= SITE_PHONE ?>
|
||||
</p>
|
||||
<h5 style="margin-bottom: 5px;">E-mail</h5>
|
||||
<p>
|
||||
<a href="#"><?= SITE_EMAIL ?></a>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4>Our office</h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p>
|
||||
<?=SITE_NAME ?>
|
||||
</p>
|
||||
<p>
|
||||
<?=SITE_ADDRL1 ?>
|
||||
<br><?=SITE_ADDRL2 ?>
|
||||
<br>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4></h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p>
|
||||
<!-- Fusce ut velit laoreet, tempus . -->
|
||||
</p>
|
||||
<ul>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="/about">About ChiefSoft</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="https://blog.chiefsoft.com">Our Blog</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="/contact">Contact</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="https://www.chiefsoft.net/projects">Client Login</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p style="font-size: 30px;">
|
||||
<a href="<?= SITE_TWITTER ?>"><i class="icon-twitter-circled"></i></a><a href="<?= SITE_FACEBOOK ?>"><i class="icon-facebook-circled"></i></a>
|
||||
<a href="https://www.f6s.com/olusesanameye?follow=1" title="Follow Olusesan Ameye on F6S"><i style="color:red;"class="icon-facebook-circled"></i></a>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_copy">
|
||||
<div class="container">
|
||||
<div class="column one">
|
||||
<a id="back_to_top" class="button button_js" href><i class="icon-up-open-big"></i></a>
|
||||
<div class="copyright">
|
||||
© <a target="_blank" rel="nofollow" href="/"><?= date("Y") ?> ChiefSoft Works</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<div id="Side_slide" class="right dark" data->
|
||||
<div class="close-wrapper">
|
||||
<a href="#" class="close"><i class="icon-cancel-fine"></i></a>
|
||||
</div>
|
||||
<div class="extras">
|
||||
<div class="extras-wrapper"></div>
|
||||
</div>
|
||||
<div class="menu_wrapper"></div>
|
||||
</div>
|
||||
<div id="body_overlay"></div>
|
||||
|
||||
|
||||
<!-- JS -->
|
||||
<script src="/assets/js/jquery-2.1.4.min.js"></script>
|
||||
|
||||
<script src="/assets/js/mfn.menu.js"></script>
|
||||
<script src="/assets/js/jquery.plugins.js"></script>
|
||||
<script src="/assets/js/jquery.jplayer.min.js"></script>
|
||||
<script src="/assets/js/animations/animations.js"></script>
|
||||
<script src="/assets/js/translate3d.js"></script>
|
||||
<script src="/assets/js/scripts.js"></script>
|
||||
|
||||
<script src="/assets/plugins/rs-plugin-6.custom/js/revolution.tools.min.js"></script>
|
||||
<script src="/assets/plugins/rs-plugin-6.custom/js/rs6.min.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
var revapi1, tpj;
|
||||
jQuery(function () {
|
||||
tpj = jQuery;
|
||||
if (tpj("#rev_slider_1_1").revolution == undefined) {
|
||||
revslider_showDoubleJqueryError("#rev_slider_1_1");
|
||||
} else {
|
||||
revapi1 = tpj("#rev_slider_1_1").show().revolution({
|
||||
sliderType: "hero",
|
||||
sliderLayout: "fullwidth",
|
||||
visibilityLevels: "1240,1024,778,480",
|
||||
gridwidth: 1240,
|
||||
gridheight: 900,
|
||||
minHeight: "",
|
||||
spinner: "spinner7",
|
||||
spinnerclr: "#272b5c",
|
||||
editorheight: "900,768,960,720",
|
||||
responsiveLevels: "1240,1024,778,480",
|
||||
disableProgressBar: "on",
|
||||
navigation: {
|
||||
onHoverStop: false
|
||||
},
|
||||
fallbacks: {
|
||||
allowHTML5AutoPlayOnAndroid: true
|
||||
},
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,528 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]><html class="no-js lt-ie10 lt-ie9"> <![endif]-->
|
||||
<!--[if IE 9]><html class="no-js lt-ie10"> <![endif]-->
|
||||
<!--[if gt IE 8]><!-->
|
||||
<html class="no-js">
|
||||
<!--<![endif]-->
|
||||
|
||||
<head>
|
||||
<?php //echo $location->city; ?>
|
||||
<!-- Basic Page Needs -->
|
||||
<meta charset="utf-8">
|
||||
<title><?= SITE_NAME ?>,<?php echo isset($location->city) ? $location->city : ''; ?> Software Development</title>
|
||||
<meta name="description" content="ChiefSoft Works with 15 years in software development,software developers,custom software development, web and mobile development, QA services. Headquartered in Atlanta, Georgia."/>
|
||||
<meta name="author" content="ChiefSoft Works">
|
||||
|
||||
<!-- Mobile Specific Metas -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
||||
|
||||
<!-- FONTS -->
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Roboto:100,300,400,400italic,700'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Patua+One:100,300,400,400italic,700'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic,900'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=DM+Sans:100,300,400,400italic,500,700,700italic,900'>
|
||||
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=DM+Serif+Display:100,300,400,400italic,500,700,700italic,900'>
|
||||
|
||||
<!-- CSS -->
|
||||
<link rel='stylesheet' href='/assets/css/global.css'>
|
||||
<link rel='stylesheet' href='/assets/css/structure.css'>
|
||||
<link rel='stylesheet' href='/assets/css/insurance3.css'>
|
||||
<link rel='stylesheet' href='/assets/css/custom.css'>
|
||||
|
||||
<!-- Revolution Slider -->
|
||||
<link rel="stylesheet" href="/assets/plugins/rs-plugin-6.custom/css/rs6.css">
|
||||
|
||||
</head>
|
||||
|
||||
<body class="home page-template-default page template-slider color-custom style-default button-round layout-full-width if-zoom if-border-hide no-content-padding no-shadows header-transparent minimalist-header-no sticky-header sticky-tb-color ab-hide subheader-both-center menu-link-color menuo-no-borders logo-no-margin mobile-tb-hide mobile-side-slide mobile-mini-mr-lc tablet-sticky mobile-sticky ">
|
||||
<div id="Wrapper">
|
||||
<div id="Header_wrapper">
|
||||
<header id="Header">
|
||||
<div id="Top_bar">
|
||||
<div class="container">
|
||||
<div class="column one">
|
||||
<?php
|
||||
include("top_menu.php");
|
||||
?>
|
||||
<div class="top_bar_right">
|
||||
<div class="top_bar_right_wrapper">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mfn-main-slider" id="mfn-rev-slider">
|
||||
<p class="rs-p-wp-fix"></p>
|
||||
<rs-module-wrap id="rev_slider_1_1_wrapper" data-source="gallery" style="background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;">
|
||||
<rs-module id="rev_slider_1_1" style="display:none;" data-version="6.1.2">
|
||||
<rs-slides>
|
||||
<rs-slide data-key="rs-1" data-anim="ei:d;eo:d;s:1000;r:0;t:fade;sl:0;">
|
||||
<img src="/assets/images/chiefsoft-slider-1.jpg" class="rev-slidebg" data-no-retina>
|
||||
<rs-layer id="slider-1-slide-1-layer-2" data-type="text" data-color="#272b5c" data-rsp_ch="on" data-xy="x:110px;y:200px;" data-text="w:normal;s:60;l:70;" data-frame_0="x:50;" data-frame_1="st:200;sp:1000;sR:200;" data-frame_999="o:0;st:w;sR:7800;" style="z-index:9;font-family:DM Serif Display;">
|
||||
Design, Development
|
||||
<br> & Management of
|
||||
<br> Enterprise Solutions
|
||||
</rs-layer>
|
||||
<rs-layer id="slider-1-slide-1-layer-3" data-type="text" data-color="#a8aabe" data-rsp_ch="on" data-xy="x:111px;y:412px;" data-text="w:normal;s:22;l:35;" data-frame_0="x:50;" data-frame_1="st:300;sp:1000;sR:300;" data-frame_999="o:0;st:w;sR:7700;" style="z-index:10;font-family:DM Sans;">
|
||||
We are fully equipped to deliver first-class
|
||||
<br> solution development services. We improve
|
||||
<br> your business efficiency and security at every step.
|
||||
</rs-layer>
|
||||
<a href="/services">
|
||||
<rs-layer id="slider-1-slide-1-layer-4" class="rev-btn" data-type="button" data-color="#272b5c" data-rsp_ch="on" data-xy="x:306px;y:559px;" data-text="w:normal;s:18;l:60;ls:0px;fw:500;" data-dim="minh:0px;" data-padding="r:40;l:40;" data-border="bor:30px,30px,30px,30px;"
|
||||
data-frame_0="x:50;" data-frame_1="st:500;sp:1000;sR:500;" data-frame_999="o:0;st:w;sR:7500;" data-frame_hover="c:#272b5c;bgc:#ced8e5;bor:30px,30px,30px,30px;sp:200;e:Power1.easeInOut;" style="z-index:12;background-color:#e6eef8;font-family:DM Sans;">
|
||||
OUR SERVICES
|
||||
</rs-layer>
|
||||
</a>
|
||||
<a href="/about">
|
||||
<rs-layer id="slider-1-slide-1-layer-5" class="rev-btn" data-type="button" data-color="#ffffff" data-rsp_ch="on" data-xy="x:101px;y:558px;" data-text="w:normal;s:18;l:60;ls:0px;fw:500;" data-dim="minh:0px;" data-padding="r:40;l:40;" data-border="bor:30px,30px,30px,30px;"
|
||||
data-frame_0="x:50;" data-frame_1="st:400;sp:1000;sR:400;" data-frame_999="o:0;st:w;sR:7600;" data-frame_hover="bgc:#111435;bor:30px,30px,30px,30px;sp:200;e:Power1.easeInOut;" style="z-index:11;background-color:#272b5c;font-family:DM Sans;">
|
||||
ABOUT US
|
||||
</rs-layer>
|
||||
</a>
|
||||
</rs-slide>
|
||||
|
||||
</rs-slides>
|
||||
|
||||
|
||||
<rs-progress class="rs-bottom" style="visibility: hidden !important;"></rs-progress>
|
||||
</rs-module>
|
||||
</rs-module-wrap>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
<div id="Content">
|
||||
<div class="content_wrapper clearfix">
|
||||
<div class="sections_group">
|
||||
<div class="entry-content">
|
||||
<div class="section mcb-section mcb-section-z569pxvnx" style="padding-top:110px;padding-bottom:110px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-e98u93utt one-fourth valign-top clearfix" style="padding:0 3%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-tdm7aj5sa one column_image">
|
||||
<div class="image_frame image_item scale-with-grid aligncenter no_border hover-disable">
|
||||
<div class="image_wrapper">
|
||||
<a href="#">
|
||||
<div class="mask"></div><img class="scale-with-grid" src="/assets/images/insurance3-home-icon1.png"></a>
|
||||
<div class="image_links ">
|
||||
<a href="#" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-ua6kvic9s one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h3>Custom
|
||||
<br> Solutions
|
||||
</h3>
|
||||
<p>
|
||||
Bespoke Solutions, Manage Design & Workflows. Cost-Effective.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-km0sn4j6n one-fourth valign-top clearfix" style="padding:0 3%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-yg89bwogw one column_image">
|
||||
<div class="image_frame image_item scale-with-grid aligncenter no_border hover-disable">
|
||||
<div class="image_wrapper">
|
||||
<a href="#">
|
||||
<div class="mask"></div><img class="scale-with-grid" src="/assets/images/chiefsoft-mobiledev-icon.png"></a>
|
||||
<div class="image_links ">
|
||||
<a href="#" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-aa77feapk one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h3>Mobile
|
||||
<br> Applications
|
||||
</h3>
|
||||
<p>
|
||||
App Design, Collaboration, Product Building & Automated testing
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-75qcr7anb one-fourth valign-top clearfix" style="padding:0 3%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-igwfothnd one column_image">
|
||||
<div class="image_frame image_item scale-with-grid aligncenter no_border hover-disable">
|
||||
<div class="image_wrapper">
|
||||
<a href="#">
|
||||
<div class="mask"></div><img class="scale-with-grid" src="/assets/images/insurance3-home-icon3.png"></a>
|
||||
<div class="image_links ">
|
||||
<a href="#" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-626rf5lk0 one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h3>Online
|
||||
<br> Security
|
||||
</h3>
|
||||
<p>
|
||||
Security Immersed team of experts for you at all levels of the project.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-9w8o9n48o one-fourth valign-top clearfix" style="padding:0 3%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-jm6anyxht one column_image">
|
||||
<div class="image_frame image_item scale-with-grid aligncenter no_border hover-disable">
|
||||
<div class="image_wrapper">
|
||||
<a href="#">
|
||||
<div class="mask"></div><img class="scale-with-grid" src="/assets/images/chiefsoft-ai-icon.png"></a>
|
||||
<div class="image_links ">
|
||||
<a href="#" class="link"><i class="icon-link"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-l4npb1o7c one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h3>Artificial
|
||||
<br> Intelligence
|
||||
</h3>
|
||||
<p>
|
||||
Custom AI Solution: Situation analysis, Specific built models.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-wjiyl5j4w" style="padding-top:110px;padding-bottom:70px;background-color:#e6eef8">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-o0zzfcfv1 one-second valign-top clearfix" style="padding:0 4% 0 0">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-eu8cujtqs one column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h6 class="insurance3-heading">ABOUT US</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2>About ChiefSoft</h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
ChiefSoft Works provides expert system design and software consulting services. Whether you are looking to buy or build a software program for your business, our professional systems expert advisory services will include-
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-5c1gcv2zi one column_column column-margin-10px">
|
||||
<div class="column_attr clearfix" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
Your Scenario-Targeted Analysis
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-5c1gcv2zi one column_column column-margin-10px">
|
||||
<div class="column_attr clearfix" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
General & Customized Solutions
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-01gj0ld84 one column_column column-margin-10px">
|
||||
<div class="column_attr clearfix mobile_align_center" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
Transactions & Platform Security
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-xer4vbg70 one column_column">
|
||||
<div class="column_attr clearfix" style="background-image:url('/assets/images/insurance3-list.png');background-repeat:no-repeat;background-position:left top;padding:0 0 0 45px;">
|
||||
<p style="color: #272b5c;">
|
||||
Efficiency, Loyalty and Marketing Goals
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-7mxcewd8r one column_button">
|
||||
<a class="button button_size_2 button_theme button_js" href="/about"><span class="button_label">READ MORE ABOUT US</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-8g8p4dxos one-second valign-top move-up clearfix" style="margin-top:-150px" data-mobile="no-up">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-vmoe0detp one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/about-us-home.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-x4mnvmffb" style="padding-top:110px;padding-bottom:80px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-c7wz6bc4u two-third valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-45zl19vod one column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h2>Technology Blog</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-0a68ujf6p one-third valign-top clearfix" style="padding:10px 0 0">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-lykfyn4yj one column_button">
|
||||
<div class="button_align align_right">
|
||||
<a class="button button_size_2 button_theme button_js" href="/blog"><span class="button_label">VIEW ALL ARTICLES</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrap mcb-wrap mcb-wrap-txr96dcf0 one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-sjzk4qkg3 one column_blog_teaser">
|
||||
<div class="blog-teaser ">
|
||||
<ul class="teaser-wrapper">
|
||||
<li class="post-56 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">
|
||||
<a href="https://blog.chiefsoft.com/category/online-security">
|
||||
|
||||
<div class="photo-wrapper scale-with-grid"><img src="/assets/images/blog-post-security.jpg" class="scale-with-grid wp-post-image" alt>
|
||||
</div>
|
||||
<div class="desc-wrapper">
|
||||
<div class="desc">
|
||||
<div class="post-meta clearfix">
|
||||
<span class="post-date">August 10, 2019</span></span>
|
||||
</div>
|
||||
<div class="post-title">
|
||||
<h3><a href="https://blog.chiefsoft.com/category/online-security">Online Security</a></h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
<li class="post-53 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">
|
||||
<a href="https://blog.chiefsoft.com/category/network/"> <div class="photo-wrapper scale-with-grid"><img src="/assets/images/blog-post-1-1024x1200.jpg" class="scale-with-grid wp-post-image" alt>
|
||||
</div>
|
||||
<div class="desc-wrapper">
|
||||
<div class="desc">
|
||||
<div class="post-meta clearfix">
|
||||
<span class="post-date">November 10, 2019</span></span>
|
||||
</div>
|
||||
<div class="post-title">
|
||||
<h4><a href="https://blog.chiefsoft.com/category/network/">Networking</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div></a>
|
||||
</li>
|
||||
<li class="post-51 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">
|
||||
<a href="https://blog.chiefsoft.com/category/machine-learning/">
|
||||
<div class="photo-wrapper scale-with-grid"><img src="/assets/images/blog-post-1024x1200.jpg" class="scale-with-grid wp-post-image" alt>
|
||||
</div>
|
||||
<div class="desc-wrapper">
|
||||
<div class="desc">
|
||||
<div class="post-meta clearfix">
|
||||
<span class="post-date">October 23, 2019</span></span>
|
||||
</div>
|
||||
<div class="post-title">
|
||||
<h4><a href="https://blog.chiefsoft.com/category/machine-learning/">Artificial intelligence</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section mcb-section mcb-section-sohxkfeuw full-width bg-cover" style="padding-top:110px;padding-bottom:0px;background-image:url(/assets/images/insurance3-sectionbg1.jpg);background-repeat:no-repeat;background-position:center bottom;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-zfxjf2j4k one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-450wcx60g one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h6 class="insurance3-heading">CONTACT</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2><?= SITE_CONTACT_HEAD ?></h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
<?= SITE_CONTACT_OTHER_TXT ?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-znqlqmd79 one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 30px;">
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-8vv2dxcps one column_button">
|
||||
<div class="button_align align_center">
|
||||
<a class="button button_size_2 button_theme button_js" href="/contact"><span class="button_label">CONTACT US NOW</span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-nqhwq7woi one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 50px;">
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-i24q0gf1v one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid aligncenter no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/insurance3-home-pic2.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer id="Footer" class="clearfix">
|
||||
<div class="widgets_wrapper">
|
||||
<div class="container">
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4>Contact us</h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<h5 style="margin-bottom: 5px;">Phone</h5>
|
||||
<p>
|
||||
<?= SITE_PHONE ?>
|
||||
</p>
|
||||
<h5 style="margin-bottom: 5px;">E-mail</h5>
|
||||
<p>
|
||||
<a href="#"><?= SITE_EMAIL ?></a>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4>Our office</h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p>
|
||||
<?=SITE_NAME ?>
|
||||
</p>
|
||||
<p>
|
||||
<?=SITE_ADDRL1 ?>
|
||||
<br><?=SITE_ADDRL2 ?>
|
||||
<br>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<h4></h4>
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p>
|
||||
<!-- Fusce ut velit laoreet, tempus . -->
|
||||
</p>
|
||||
<ul>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="/about">About ChiefSoft</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="https://blog.chiefsoft.com">Our Blog</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="/contact">Contact</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;">
|
||||
<a href="https://www.chiefsoft.net/projects">Client Login</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
<div class="column one-fourth">
|
||||
<aside class="widget_text widget widget_custom_html">
|
||||
<div class="textwidget custom-html-widget">
|
||||
<p style="font-size: 30px;">
|
||||
<a href="<?= SITE_TWITTER ?>"><i class="icon-twitter-circled"></i></a><a href="<?= SITE_FACEBOOK ?>"><i class="icon-facebook-circled"></i></a>
|
||||
<a href="https://www.f6s.com/olusesanameye?follow=1" title="Follow Olusesan Ameye on F6S"><i style="color:red;"class="icon-facebook-circled"></i></a>
|
||||
</p>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer_copy">
|
||||
<div class="container">
|
||||
<div class="column one">
|
||||
<a id="back_to_top" class="button button_js" href><i class="icon-up-open-big"></i></a>
|
||||
<div class="copyright">
|
||||
© <a target="_blank" rel="nofollow" href="/"><?= date("Y") ?> ChiefSoft Works</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<div id="Side_slide" class="right dark" data->
|
||||
<div class="close-wrapper">
|
||||
<a href="#" class="close"><i class="icon-cancel-fine"></i></a>
|
||||
</div>
|
||||
<div class="extras">
|
||||
<div class="extras-wrapper"></div>
|
||||
</div>
|
||||
<div class="menu_wrapper"></div>
|
||||
</div>
|
||||
<div id="body_overlay"></div>
|
||||
|
||||
|
||||
<!-- JS -->
|
||||
<script src="/assets/js/jquery-2.1.4.min.js"></script>
|
||||
|
||||
<script src="/assets/js/mfn.menu.js"></script>
|
||||
<script src="/assets/js/jquery.plugins.js"></script>
|
||||
<script src="/assets/js/jquery.jplayer.min.js"></script>
|
||||
<script src="/assets/js/animations/animations.js"></script>
|
||||
<script src="/assets/js/translate3d.js"></script>
|
||||
<script src="/assets/js/scripts.js"></script>
|
||||
|
||||
<script src="/assets/plugins/rs-plugin-6.custom/js/revolution.tools.min.js"></script>
|
||||
<script src="/assets/plugins/rs-plugin-6.custom/js/rs6.min.js"></script>
|
||||
|
||||
|
||||
<script>
|
||||
var revapi1, tpj;
|
||||
jQuery(function () {
|
||||
tpj = jQuery;
|
||||
if (tpj("#rev_slider_1_1").revolution == undefined) {
|
||||
revslider_showDoubleJqueryError("#rev_slider_1_1");
|
||||
} else {
|
||||
revapi1 = tpj("#rev_slider_1_1").show().revolution({
|
||||
sliderType: "hero",
|
||||
sliderLayout: "fullwidth",
|
||||
visibilityLevels: "1240,1024,778,480",
|
||||
gridwidth: 1240,
|
||||
gridheight: 900,
|
||||
minHeight: "",
|
||||
spinner: "spinner7",
|
||||
spinnerclr: "#272b5c",
|
||||
editorheight: "900,768,960,720",
|
||||
responsiveLevels: "1240,1024,778,480",
|
||||
disableProgressBar: "on",
|
||||
navigation: {
|
||||
onHoverStop: false
|
||||
},
|
||||
fallbacks: {
|
||||
allowHTML5AutoPlayOnAndroid: true
|
||||
},
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,179 @@
|
||||
<div id="Content">
|
||||
<div class="content_wrapper clearfix">
|
||||
<div class="sections_group">
|
||||
<div class="entry-content">
|
||||
<div class="section mcb-section mcb-section-afaa818ae bg-cover" style="padding-top:0px;padding-bottom:0px;background-image:url(/assets/images/insurance3-subheader2.jpg);background-repeat:no-repeat;background-position:center bottom;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-6d6ed5bd4 one valign-top clearfix" style="padding:30% 0 10%">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-b3104685d one column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 52% 0 0;">
|
||||
<h2>Our Services</h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
ChiefSoft concentrates in helping to achieve your deliverables through the strategic design ,development or application of custom and retail softwares. We’re focused on helping you achieve and improve your bottom line. </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section mcb-section mcb-section-29b4e165c" style="padding-top:110px;padding-bottom:170px;background-color:#e6eef8">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-6bc4a0c6a one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-1718a7b98 one-second column_column">
|
||||
<div class="column_attr clearfix" style>
|
||||
<h6 class="insurance3-heading">Flexibility</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2>Always creating and growing with focus on quality</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-v78hdc7n4 one-second column_column">
|
||||
<div class="column_attr clearfix" style="padding:65px 0 0;">
|
||||
<p>
|
||||
Your application landscape is dynamic, evolving almost daily. We pay attention to where the web and mobile platform is trending. We're able to ensure our customer's solution benefits from the solution of tomorrow with cost overruns.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-c7gnw5b5f one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 40px;">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="column mcb-column mcb-item-ozaznhxjw one-third column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 3% 0 0;">
|
||||
<h6 class="insurance3-heading3">Custom Solutions</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p style="color: #272b5c;">
|
||||
With the experience of delivering custom software projects, we provide the best solutions that accelerate workflows, optimize operations, and boost revenues. We provide you with bespoke solutions, comprehend the unique culture of your product, and actualize them via application development, system integration, migration, to mention a few. Thus, branding your solutions specifically to maximize your potential and intent.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="column mcb-column mcb-item-ozaznhxjw one-third column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 3% 0 0;">
|
||||
<h6 class="insurance3-heading3">Big Data</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p style="color: #272b5c;">
|
||||
We can help you data gathering project, manage projects of massive volume of both structured and unstructured data to build the most profound insight into your goals, thereby, provides access to valuable new information, enabling a custom solution for you and your clients.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="column mcb-column mcb-item-06jbfdosf one-third column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 3% 0 0;">
|
||||
<h6 class="insurance3-heading3">Mobile Application</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p style="color: #272b5c;">
|
||||
We engage in well-established development practices with state-of-art technologies to create mobile apps to fit your products and their goals, exceeding client expectations. We do substantial research, brainstorming to create a unique applicable product yet, focus on the user experience. ChiefSoft assists app owners in making high-level decisions and guides them through the design, development, and deployment processes.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="column mcb-column mcb-item-06jbfdosf one-third column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 3% 0 0;">
|
||||
<h6 class="insurance3-heading3">Cyber-Security</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p style="color: #272b5c;">
|
||||
Our expertise provides immersed security, precision compliance, and practical solutions tailored to your business. Hence, protected data.
|
||||
We implement cybersecurity solutions that match your needs and support them with a negligible impact on your users. We provide robust cybersecurity that doesn't handcuff your team's productivity. ChiefSoft merges all patented applications with years of expertise to provide you with top security solutions and metrics as needed.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-u25zok0nh one-third column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 3% 0 0;">
|
||||
<h6 class="insurance3-heading3">Artificial Intelligence</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p style="color: #272b5c;">
|
||||
We deliver a well-developed solution to improve your products and operations using cut-edge machine learning, Computer Vision, AI-Driven Chatbots, AI Product Development, Data Science & Research. ChiefSoft interprets the human-like experience to boost your operational performance via our created deep learning in development. We take care of all your AI needs by actually designing, building your custom-built models.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="column mcb-column mcb-item-u25zok0nh one-third column_column">
|
||||
<div class="column_attr clearfix" style="padding:0 3% 0 0;">
|
||||
<h6 class="insurance3-heading3">Training</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<p style="color: #272b5c;">
|
||||
ChiefSoft provides training services for small to large-scale business organizations. We offer a complete range of training from IT consulting, software, and hardware services such as business-technology consulting, systems integration, supply chain, Internet and e-business consulting, training, custom application development, re-engineering, and sustenance.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="section mcb-section mcb-section-5ea9e794b" style="padding-top:0px;padding-bottom:70px;background-color:">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-e866de44b one valign-top move-up clearfix" style="margin-top:-100px" data-mobile="no-up">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-21f7a0950 one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" alt="ChiefSoft Services" src="/assets/images/chiefsoft-service.jpg">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section mcb-section mcb-section-20228cf09 full-width bg-cover" style="padding-top:110px;padding-bottom:0px;background-image:url(/assets/images/insurance3-sectionbg1.jpg);background-repeat:no-repeat;background-position:center bottom;">
|
||||
<div class="section_wrapper mcb-section-inner">
|
||||
<div class="wrap mcb-wrap mcb-wrap-f0ad06312 one valign-top clearfix">
|
||||
<div class="mcb-wrap-inner">
|
||||
<div class="column mcb-column mcb-item-c276be2f2 one column_column">
|
||||
<div class="column_attr clearfix align_center" style>
|
||||
<h6 class="insurance3-heading">CONTACT</h6>
|
||||
<hr class="no_line" style="margin: 0 auto 5px;">
|
||||
<h2><?=SITE_CONTACT_HEAD?></h2>
|
||||
<hr class="no_line" style="margin: 0 auto 15px;">
|
||||
<p>
|
||||
<?=SITE_CONTACT_OTHER_TXT?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-2317ba700 one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 30px;">
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-f5a11dd9e one column_button">
|
||||
<div class="button_align align_center">
|
||||
<a class="button button_size_2 button_theme button_js" href="/contact"><span class="button_label">CONTACT US NOW</span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-417186898 one column_divider">
|
||||
<hr class="no_line" style="margin: 0 auto 50px;">
|
||||
</div>
|
||||
<div class="column mcb-column mcb-item-57adece96 one column_image">
|
||||
<div class="image_frame image_item no_link scale-with-grid aligncenter no_border">
|
||||
<div class="image_wrapper"><img class="scale-with-grid" src="/assets/images/insurance3-home-pic2.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
//echo $ci->router->fetch_class();
|
||||
$current_page = isset($this_page_name)? $this_page_name:'';
|
||||
|
||||
$selected_class = " class=\"current-menu-item\" ";
|
||||
$p1=$p2=$p3=$p4=$p5=$p6='';
|
||||
|
||||
switch($current_page){
|
||||
|
||||
case '':
|
||||
case 'home':
|
||||
$p1 = $selected_class;
|
||||
break;
|
||||
|
||||
case 'about':
|
||||
$p2 = $selected_class;
|
||||
break;
|
||||
|
||||
case 'services':
|
||||
$p3 = $selected_class;
|
||||
break;
|
||||
|
||||
case 'blog':
|
||||
$p4 = $selected_class;
|
||||
break;
|
||||
|
||||
case 'contact':
|
||||
$p5 = $selected_class;
|
||||
break;
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="top_bar_left clearfix">
|
||||
<div class="logo">
|
||||
<a id="logo" href="/" data-padding="30"><img class="logo-main scale-with-grid" src="/assets/images/chiefsoft-lg.png" data-retina="/assets/images/chiefsoft-lg2.png" data-no-retina><img class="logo-sticky scale-with-grid" src="/assets/images/chiefsoft-lg.png" data-retina="/assets/images/chiefsoft-lg2.png" data-no-retina><img class="logo-mobile scale-with-grid" src="/assets/images/chiefsoft-lg.png" data-retina="/assets/images/chiefsoft-lg2.png" data-no-retina><img class="logo-mobile-sticky scale-with-grid" src="/assets/images/chiefsoft-lg.png" data-retina="/assets/images/chiefsoft-lg2.png" data-no-retina></a>
|
||||
</div>
|
||||
<div class="menu_wrapper">
|
||||
<nav id="menu">
|
||||
<ul id="menu-main-menu" class="menu menu-main">
|
||||
<li <?php echo $p1; ?>>
|
||||
<a href="/"><span>HOME</span></a>
|
||||
</li>
|
||||
<li <?php echo $p2; ?>>
|
||||
<a href="/about"><span>ABOUT</span></a>
|
||||
</li>
|
||||
<li <?php echo $p3; ?>>
|
||||
<a href="/services"><span>SERVICES</span></a>
|
||||
</li>
|
||||
<li <?php echo $p4; ?>>
|
||||
<a href="/blog"><span>BLOG</span></a>
|
||||
</li>
|
||||
<li <?php echo $p5; ?>>
|
||||
<a href="/contact"><span>CONTACT</span></a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav><a class="responsive-menu-toggle " href="#"><i class="icon-menu-fine"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user