-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
34 lines (26 loc) · 857 Bytes
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php include_once realpath("header.php");?>
<!-- <div style="max-width:900px; margin:auto"> -->
<br>
<h1>About Us</h1>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<?php include_once realpath("$custom_text_path/about.php");?>
</div>
</div>
<?php
if ( $ab_citation && file_exists(realpath("$custom_text_path/db_citation.php")) && filesize(realpath("$custom_text_path/db_citation.php")) >0) {
include_once realpath("$custom_text_path/db_citation.php");
}
?>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<?php
if ( $ab_labs && file_exists(realpath("groups.php")) ) {
include_once realpath("groups.php");
}
?>
</div>
</div>
<br>
<!-- </div> -->
<?php include_once realpath("$easy_gdb_path/footer.php");?>