You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
891 B
PHTML
30 lines
891 B
PHTML
4 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title><?= $this->renderSection('title') ?></title>
|
||
|
|
||
|
<!-- Google Font: Source Sans Pro -->
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
|
||
|
<!-- Font Awesome -->
|
||
|
<link rel="stylesheet" href="<?= base_url() ?>adminlte/plugins/fontawesome-free/css/all.min.css">
|
||
|
<!-- Theme style -->
|
||
|
<link rel="stylesheet" href="<?= base_url() ?>adminlte/dist/css/adminlte.min.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="wrapper">
|
||
|
<!-- Main content -->
|
||
|
<section class="invoice">
|
||
|
<?= $this->renderSection('main') ?>
|
||
|
</section>
|
||
|
<!-- /.content -->
|
||
|
</div>
|
||
|
<!-- ./wrapper -->
|
||
|
<!-- Page specific script -->
|
||
|
<script>
|
||
|
window.addEventListener("load", window.print());
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|