101 lines
2.2 KiB
PHP
101 lines
2.2 KiB
PHP
<? include "include/head.php"; ?>
|
|
<? include "include/top.php"; ?>
|
|
<section class="page-header page-header-modern page-header-background page-header-background-md overlay overlay-color-dark overlay-show overlay-op-8" style="background-image: url(image/top.jpg);">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row mt-5">
|
|
|
|
<div class="col-md-12 align-self-center p-static order-2 text-center">
|
|
|
|
<h1><?=$lang['ABOUT_TEXT24']?></h1>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-12 align-self-center order-1">
|
|
|
|
<ul class="breadcrumb breadcrumb-light d-block text-center">
|
|
|
|
<li><a href="#">Home</a></li>
|
|
|
|
<li class="active">History</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<div class="sub_bg py-0">
|
|
<section class="main_con">
|
|
<div class="order-1 right_bg appear-animation" data-appear-animation="fadeInLeftShorter" data-appear-animation-delay="200">
|
|
<div class="right_img2">
|
|
<img src="image/right2_bg.png" class="img-fluid">
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-between align-items-center">
|
|
|
|
<div class="col-md-12 order-2 order-md-1 appear-animation" data-appear-animation="fadeInRightShorter" data-appear-animation-delay="200">
|
|
<h6>OUR HISTORY</h6>
|
|
<h2 class="text-color-light mb-4"><?=$lang['ABOUT_TEXT25']?>
|
|
</h2>
|
|
<div class="history_box">
|
|
<?
|
|
$argu["h_gubun"] = $language;
|
|
$argu["division"] = "";
|
|
$_y_list = $Obj_history -> get_main_year1($argu);
|
|
if(count($_y_list) > 0){
|
|
for($y=0;$y<count($_y_list);$y++){
|
|
$_d_list = $Obj_history -> get_histroy_detail($_y_list[$y]["h_no"]);
|
|
?>
|
|
<div class="history_text appear-animation" data-appear-animation="fadeInRightShorter" data-appear-animation-delay="200">
|
|
<h1 class="blue_text"><?=$_y_list[$y]["h_year"]?></h1>
|
|
<?
|
|
if(count($_d_list) > 0){
|
|
for($d=0;$d<count($_d_list);$d++){
|
|
?>
|
|
<p>
|
|
<?=$_d_list[$d]["h_content"]?>
|
|
</p>
|
|
<?
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
<?
|
|
}
|
|
}
|
|
else{
|
|
?>
|
|
<div class="about3_box">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h2><?=$lang["board-nodata"]?></h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<? include "include/footer.php"; ?>
|