コード例 #1
0
ファイル: admin.php プロジェクト: patilstar/HMVC-WITH-CI
<?php

defined('BASEPATH') or exit('No direct script access allowed');
echo html_tag('lang="' . $this->lang->code() . '" dir="' . $this->lang->direction() . '"');
echo head_tag();
echo meta_charset();
echo base_href();
echo ie_edge();
template_title();
template_metadata();
echo viewport();
echo favicon();
echo apple_touch_icon_precomposed();
echo cleartype_ie();
echo '<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css"/>';
echo '<link href="../admin/assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>';
echo '<link href="../admin/assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>';
echo '<link href="../admin/assets/global/plugins/uniform/css/uniform.default.css" rel="stylesheet" type="text/css"/>';
echo ' <link href="../admin/assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css"/>';
// END GLOBAL MANDATORY STYLES -->
// BEGIN PAGE LEVEL STYLES -->
echo '<link rel="stylesheet" type="text/css" href="../admin/assets/global/plugins/select2/select2.css"/>';
echo '<link href="../admin/assets/global/plugins/jquery-file-upload/blueimp-gallery/blueimp-gallery.min.css" rel="stylesheet"/>';
echo '<link href="../admin/assets/global/plugins/jquery-file-upload/css/jquery.fileupload.css" rel="stylesheet"/>';
echo '<link href="../admin/assets/global/plugins/jquery-file-upload/css/jquery.fileupload-ui.css" rel="stylesheet"/>';
// END PAGE LEVEL SCRIPTS -->
// BEGIN THEME STYLES -->
echo '<link href="../admin/assets/global/css/components.css" id="style_components" rel="stylesheet" type="text/css"/>';
echo '<link href="../admin/assets/global/css/plugins.css" rel="stylesheet" type="text/css"/>';
echo '<link href="../admin/assets/admin/layout/css/layout.css" rel="stylesheet" type="text/css"/>';
echo '<link id="style_color" href="../admin/assets/admin/layout/css/themes/darkblue.css" rel="stylesheet" type="text/css"/>';
コード例 #2
0
 public function html_meta_charset()
 {
     return meta_charset();
 }