Exemplo n.º 1
0
	<?php 
echo $this->section('scripts_head');
?>
</head>
<body>
	<?php 
// Main content (from inner view, or nested layout)
?>
	<?php 
echo $this->section('content');
?>

	<?php 
// Scripts at page end
?>
	<script src='<?php 
echo dist_url('app.min.js');
?>
'></script>
	<?php 
echo $this->section('scripts_foot');
?>

	<?php 
// Google Analytics
?>
	<?php 
$this->insert('partials::ga');
?>
</body>
</html>
Exemplo n.º 2
0
	<?php 
echo $this->section('scripts_head');
?>

	<?php 
// Scripts and Stylesheets for Grocery CRUD
?>
	<?php 
echo $this->section('scripts_crud');
?>

	<?php 
// Stylesheets
?>
	<link href='<?php 
echo dist_url('admin.min.css');
?>
' rel='stylesheet'>
	<?php 
echo $this->section('styles');
?>
</head>
<body class="<?php 
echo $body_class;
?>
">
	<?php 
// Main content (from inner view, or nested layout)
?>
	<?php 
echo $this->section('content');
Exemplo n.º 3
0
        <!-- bootstrap wysihtml5 - text editor -->
        <link rel="stylesheet" href="<?php 
echo plugin_url();
?>
bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css">

        <link rel="stylesheet" href="<?php 
echo dist_url();
?>
fonts/fonts-fa.css">
        <link rel="stylesheet" href="<?php 
echo dist_url();
?>
css/bootstrap-rtl.min.css">
        <link rel="stylesheet" href="<?php 
echo dist_url();
?>
css/style.css">
        <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
        <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
        <!--[if lt IE 9]>
            <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
            <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
        <![endif]-->
    </head>

    <body class="skin-blue sidebar-mini">
        <div class="wrapper">
            <header class="main-header">
                <!-- Logo -->
                <a href="index2.html" class="logo" style="height:100px;padding-top:10px">
Exemplo n.º 4
0
	<?php 
// Stylesheets
?>
	<link href='<?php 
echo dist_url('admin.min.css');
?>
' rel='stylesheet'>
	<?php 
echo $this->section('styles');
?>

	<?php 
// Scripts at page start
?>
	<script src='<?php 
echo dist_url('admin.min.js');
?>
'></script>
	<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
	<!--[if lt IE 9]>
		<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
		<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
	<![endif]-->
	<?php 
echo $this->section('scripts_head');
?>
	
	<?php 
// Grocery CRUD scripts
if (!empty($crud_data)) {
    foreach ($crud_data->css_files as $file) {
Exemplo n.º 5
0
<?php

defined('BASEPATH') or exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Sites
| -------------------------------------------------------------------------
| This file lets you define site-specific values
|
*/
$config['sites'] = array('frontend' => array('autoload' => array('libraries' => array('database'), 'helpers' => array('session'), 'models' => array()), 'meta' => array('title_prefix' => 'Frontend Website - ', 'custom' => array('author' => 'Michael Chan (waifung.hk)', 'description' => 'Frontend Website description')), 'assets' => array('stylesheets' => array(dist_url('app.min.css')), 'scripts_head' => array(), 'scripts_foot' => array(dist_url('app.min.js'))), 'menu' => array('home' => array('name' => lang('home'), 'url' => ''), 'example' => array('name' => lang('example'), 'url' => 'example', 'children' => array('Form Basic' => 'example/form_basic', 'Form Advanced' => 'example/form_advanced', lang('example') . ' 1' => 'example/demo/1', lang('example') . ' 2' => 'example/demo/2', lang('example') . ' 3' => 'example/demo/3')), 'sign_up' => array('name' => lang('sign_up'), 'url' => 'account/sign_up'), 'login' => array('name' => lang('login'), 'url' => 'account/login'))), 'admin' => array('autoload' => array('libraries' => array('database'), 'helpers' => array('session'), 'models' => array()), 'meta' => array('title_prefix' => 'Admin Panel - ', 'custom' => array('author' => 'Michael Chan (waifung.hk)', 'description' => 'Admin Panel description')), 'assets' => array('stylesheets' => array(dist_url('admin.min.css')), 'scripts_head' => array(dist_url('admin.min.js')), 'scripts_foot' => array()), 'menu' => array('home' => array('name' => 'Home', 'url' => '', 'icon' => 'fa fa-home'), 'user' => array('name' => 'Users', 'url' => 'user', 'icon' => 'fa fa-users'), 'example' => array('name' => 'Examples', 'url' => 'example', 'icon' => 'fa fa-cog', 'children' => array('Example 1' => 'example/demo/1', 'Example 2' => 'example/demo/2', 'Example 3' => 'example/demo/3')), 'logout' => array('name' => 'Sign Out', 'url' => 'account/logout', 'icon' => 'fa fa-sign-out'))), 'api' => array('autoload' => array('libraries' => array(), 'helpers' => array(), 'models' => array())));