PHP Classes

File: templates/examples/cms/hello_world_mobile.html.tpl

Recommend this page to a friend!
  Classes of Saro Carvello   PHP Web MVC Framework   templates/examples/cms/hello_world_mobile.html.tpl   Download  
File: templates/examples/cms/hello_world_mobile.html.tpl
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Web MVC Framework
MVC framework providing autogenerated MySQL models
Author: By
Last change: Update of templates/examples/cms/hello_world_mobile.html.tpl
Date: 1 year ago
Size: 1,446 bytes
 

Contents

Class file image Download
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Hello World Mobile version</title> <!-- Bootstrap core CSS --> <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" media="screen"> <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.css" /> <script src="https://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="https://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js"></script> </head> <body> <div data-role="page" data-theme="a"> <div data-role="header" data-position="inline"> <div data-role="navbar"> <ul> <li><a href="{GLOBAL:SITEURL}/examples/" data-ajax="false" data-icon="home" class="ui-btn-active">Home</a></li> <li><a href="Buttons" data-icon="star">Buttons</a></li> <li><a href="List" data-icon="grid">Lists</a></li> <li><a href="Nav" data-icon="search">Nav</a></li> <li><a href="Forms" data-icon="gear">Forms</a></li> </ul> </div> </div> <div data-role="content" data-theme="a"> <a href="Show this message" data-role="button" data-icon="star">Show this message</a> <h3>{Message}</h3> </div> </div> </body> </html>