103 |
- |
1 |
<?php
|
|
|
2 |
echo ($subSec == "sponsors") ? showSectionHead($spText['label']['Sponsors']) : showSectionHead($spTextPanel['About Us']);
|
|
|
3 |
|
|
|
4 |
if (!empty($blogContent['blog_content'])) {
|
|
|
5 |
echo $blogContent['blog_content'];
|
|
|
6 |
} else {
|
|
|
7 |
?>
|
|
|
8 |
|
|
|
9 |
<?php if ($subSec != "sponsors") {?>
|
|
|
10 |
<table width="100%" cellspacing="0" cellpadding="0" class="summary">
|
|
|
11 |
<tr><td class="topheader" colspan="2"><?php echo $spText['label']['Developers']?></td></tr>
|
|
|
12 |
<tr>
|
|
|
13 |
<td class="content" style="border-left: none;width: 30%">PHP, MYSQL, AJAX, HTML</td>
|
|
|
14 |
<td class="contentmid" style="text-align: left;padding-left: 10px">Geo Varghese</td>
|
|
|
15 |
</tr>
|
|
|
16 |
<tr>
|
|
|
17 |
<td class="content" style="border-left: none;width: 30%">PHP, MYSQL, JQUERY</td>
|
|
|
18 |
<td class="contentmid" style="text-align: left;padding-left: 10px">Deepthy Rao</td>
|
|
|
19 |
</tr>
|
|
|
20 |
</table>
|
|
|
21 |
<br><br>
|
|
|
22 |
<?php }?>
|
|
|
23 |
<table width="100%" cellspacing="0" cellpadding="0" class="summary">
|
|
|
24 |
<tr><td class="topheader" colspan="2"><?php echo $spText['label']['Sponsors']?></td></tr>
|
|
|
25 |
<tr>
|
|
|
26 |
<td class="contentmid" colspan="2" style="border-left: none;font-size: 18px;text-align: left">
|
|
|
27 |
<a target="_blank" href="<?php echo SP_MAIN_SITE?>/aboutus/sponsors/">
|
|
|
28 |
<?php echo str_replace('$100', '$500', $spTextSettings['Click here to become a sponsor for Seo Panel']); ?>
|
|
|
29 |
<?php echo $spTextSettings['getallpluginfree']; ?>
|
|
|
30 |
</a>
|
|
|
31 |
</td>
|
|
|
32 |
</tr>
|
|
|
33 |
<?php echo $sponsors?>
|
|
|
34 |
</table>
|
|
|
35 |
|
|
|
36 |
<?php if ($subSec != "sponsors") {?>
|
|
|
37 |
<br><br>
|
|
|
38 |
<table width="100%" cellspacing="0" cellpadding="0" class="summary">
|
|
|
39 |
<tr><td class="topheader" colspan="2"><?php echo $spText['label']['Translators']?></td></tr>
|
|
|
40 |
<?php foreach($transList as $transInfo) {?>
|
|
|
41 |
<tr>
|
|
|
42 |
<td class="content" style="border-left: none;width: 30%"><?php echo $transInfo['lang_name']?></td>
|
|
|
43 |
<td class="contentmid" style="text-align: left;padding-left: 10px"><?php echo $transInfo['trans_name']?>, <a href="<?php echo $transInfo['trans_website']?>" target="_blank"><?php echo $transInfo['trans_company']?></a></td>
|
|
|
44 |
</tr>
|
|
|
45 |
<?php }?>
|
|
|
46 |
</table>
|
|
|
47 |
<?php }?>
|
|
|
48 |
|
|
|
49 |
<?php }?>
|