PHP Classes

File: example/templates/template_kecik.php

Recommend this page to a friend!
  Classes of Dony   Kecik   example/templates/template_kecik.php   Download  
File: example/templates/template_kecik.php
Role: Auxiliary script
Content type: text/plain
Description: Example script
Class: Kecik
MVC framework library as single PHP file
Author: By
Last change: fixing bug escaped tag
update to version 1.1
Date: 9 years ago
Size: 1,501 bytes
 

Contents

Class file image Download
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!--> <html> <!--<![endif]-->
    <head>
        <title>Example Kecik Framework</title>
       
        <meta charset="utf-8">
        <title>Simple Template</title>

        <meta name="description" content="overview &amp; stats" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
       
        @css
    </head>
    <body>
        <nav class="navbar navbar-inverse navbar-fixed-top">
      <div class="container">
        <div class="navbar-header">
          <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
            <span class="sr-only">Toggle navigation</span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
          </button>
          <a class="navbar-brand" href="#">Kecik Framework</a>
        </div>
        <div id="navbar" class="collapse navbar-collapse">
          <ul class="nav navbar-nav">
            <li class="active"><a href="{{ $this->url->to('') }}">Home</a></li>
            <li><a href="{{ $this->url->to('data') }}">Data</a></li>
          </ul>
        </div><!--/.nav-collapse -->
      </div>
    </nav>

    <div class="container">
       
        @response

    </div><!-- /.container -->
       

        @js
    </body>
</html>