PHP Classes

File: templates/index.tpl

Recommend this page to a friend!
  Classes of Isaac Trenado Mx   Dropsize MVCf Smarty   templates/index.tpl   Download  
File: templates/index.tpl
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Dropsize MVCf Smarty
MVC framework that uses Smarty to render views
Author: By
Last change:
Date: 8 years ago
Size: 6,015 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content="Isaac Trenado"> <title>{$title}</title> <!-- Bootstrap Core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="css/stylish-portfolio.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/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/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <!-- Navigation --> <a id="menu-toggle" href="#" class="btn btn-dark btn-lg toggle"><i class="fa fa-bars"></i></a> <nav id="sidebar-wrapper"> <a id="menu-close" href="#" class="btn btn-light btn-lg pull-right toggle"> <i class="fa fa-times"></i> </a> <ul class="sidebar-nav"> <li class="sidebar-brand"> <a href="#top" onclick ='$("#menu-close").click();'>Dropsize</a> </li> <li> <a href="#about" onclick ='$("#menu-close").click();'>Descripci&oacute;n</a> </li> </ul> </nav> <!-- Header --> <header id="top" class="header"> <div class="text-vertical-center"> <h1>Dropsize MVCf</h1> <h3>Powered by <a href="http://www.codigolimpio.com">codigo limpio</a></h3> <br> <a href="#about" class="btn btn-dark btn-lg">Entrar</a> </div> </header> <!-- About --> <section id="about" class="about"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2>Descripci&oacute;n de dropsize</h2> <p class="lead"> Router > Controller > Bussiness > Dependence > Model = [JSON | HTML | XML | TEXT] </p> </div> </div> <!-- /.row --> </div> <!-- /.container --> </section> <!-- Footer --> <footer> <div class="container"> <div class="row"> <div class="col-lg-10 col-lg-offset-1 text-center"> <h4> <strong>Dropsize powered by <a href="http://www.codigolimpio.com">codigo limpio</a></strong> </h4> <p>Cuautitlan Izcalli, M&eacute;xico 54763<br>Ni&ntilde;os H&eacute;roes</p> <ul class="list-unstyled"> <li><i class="fa fa-phone fa-fw"></i> +52 55 42589237</li> <li><i class="fa fa-envelope-o fa-fw"></i> <a href="mailto:isaac.trenado@codigolimpio.com">isaac.trenado@codigolimpio.com</a> </li> </ul> <br> <ul class="list-inline"> <li> <a href="#"><i class="fa fa-facebook fa-fw fa-3x"></i></a> </li> </ul> <hr class="small"> <p class="text-muted">Derechos reservados &copy; <a href="http://www.codigolimpio.com">codigolimpio.com</a> 2015</p> </div> </div> </div> </footer> <!-- jQuery --> <script src="js/jquery.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> <!-- Custom Theme JavaScript --> <script> // Closes the sidebar menu $("#menu-close").click(function (e) { e.preventDefault(); $("#sidebar-wrapper").toggleClass("active"); }); // Opens the sidebar menu $("#menu-toggle").click(function (e) { e.preventDefault(); $("#sidebar-wrapper").toggleClass("active"); }); // Scrolls to the selected menu item on the page $(function () { $('a[href*=#]:not([href=#])').click(function () { if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top }, 1000); return false; } } }); }); </script> </body> </html>