c5161c8c65
2.add: Add Korean Language
26 lines
No EOL
557 B
PHP
26 lines
No EOL
557 B
PHP
<?php
|
|
define('IN_SYS', true);
|
|
require_once "core.php";
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="<?php echo $current_lang; ?>">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>About UIISC - <?php echo $title;?></title>
|
|
<?php include "headmate.php";?>
|
|
</head>
|
|
<body>
|
|
<?php include "nav.php";?>
|
|
<div class="bs-docs-header">
|
|
<div class="container">
|
|
<h1>UIISC</h1>
|
|
<p>About UIISC</p>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="row">
|
|
</div>
|
|
</div>
|
|
<?php include "footer.php";?>
|
|
</body>
|
|
</html>
|