Welcome Guest, Not a member yet? Register   Sign In
Codeigniter Simple Template Library
#1

Yesterday I coded a simple template library for my personal use, I think it may help someone else, so I post the Github link here.

https://github.com/terrylinooo/Codeignit...te-Library

If you ever used WordPress to build websites, you may know WordPress uses something like wp_head() , wp_footer() to manage the HTML output, this library does the same thing and it is more light-weight and simple.

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="utf-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <title><?= CI_title() ?></title>
   <?= CI_head() ?>
</head>

<body<?= CI_body_attr() ?>> 

some thing here

<?= CI_footer() ?>
</body>
</html>


Check out my Git to read full document about how to use it.
Personal blog: https://terryl.in
My personal project is called Dictpedia is currently using Codeigniter 3, welcome.
Reply


Messages In This Thread
Codeigniter Simple Template Library - by allenlee - 05-11-2016, 10:32 AM



Theme © iAndrew 2016 - Forum software by © MyBB