-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtemplate.php
21 lines (20 loc) · 926 Bytes
/
template.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php $this->load->view($folder_themes .'/commons/meta') ?>
<?php $this->load->view($folder_themes .'/commons/source_css') ?>
<?php $this->load->view($folder_themes .'/commons/source_js') ?>
</head>
<body class="font-primary bg-gray-100">
<?php if($this->uri->segment(2) == 'kategori' && empty($judul_kategori)) : ?>
<?php $this->load->view($folder_themes .'/commons/404') ?>
<?php else : ?>
<?php $this->load->view($folder_themes . '/commons/loading_screen') ?>
<?php $this->load->view($folder_themes .'/commons/header') ?>
<?php $this->load->view($folder_themes .'/layouts/beranda.tpl.php') ?>
<?php $this->load->view($folder_themes .'/commons/footer') ?>
<?php endif ?>
<script src="<?= theme_asset("js/script.min.js?" . THEME_VERSION) ?>"></script>
</body>
</html>