33 lines
948 B
PHP
33 lines
948 B
PHP
|
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<title>iLink | Documentation </title>
|
||
|
<!-- Tell the browser to be responsive to screen width -->
|
||
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||
|
|
||
|
<link rel="shortcut icon" href="<?php echo base_url('favicon.ico') ?>" type="image/x-icon">
|
||
|
<link rel="icon" href="<?php echo base_url('favicon.ico') ?>" type="image/x-icon">
|
||
|
|
||
|
<!-- Theme style -->
|
||
|
<link rel="stylesheet" href="<?php echo base_url('dist/css/AdminLTE.css') ?>">
|
||
|
|
||
|
<link rel="stylesheet" href="<?php echo base_url('dist/css/main.css') ?>">
|
||
|
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<iframe id="inlineFrameExample"
|
||
|
frameBorder="0"
|
||
|
title="Inline Frame Example"
|
||
|
width="100%"
|
||
|
height="100%"
|
||
|
src="<?= $link ?>">
|
||
|
</iframe>
|
||
|
|
||
|
</body>
|
||
|
</html>
|