Codeigniter Simple Template Library |
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.
I am glad you like it!
If the CSS or Javascript snippet are loaded by every pages, I usually put them in the style.css or script.js It is useful for programmings like to hard-coding CSS and Javascript snippet in Controllers, just for styling single page or a few pages. For example, I hard-coding those CSS only for login and register page in User Controller. Output: If anyone don't like hard-coding, it can be loaded from View as a varible. PHP Code: // Load view into a variable for importing CSS I think it is convenient to use.
Personal blog: https://terryl.in
My personal project is called Dictpedia is currently using Codeigniter 3, welcome. |
Welcome Guest, Not a member yet? Register Sign In |