Skip to content

Instantly share code, notes, and snippets.

@tjntun
Last active December 10, 2015 18:18
Show Gist options
  • Save tjntun/4473269 to your computer and use it in GitHub Desktop.
Save tjntun/4473269 to your computer and use it in GitHub Desktop.

Revisions

  1. tjntun revised this gist Jul 9, 2013. 1 changed file with 3 additions and 4 deletions.
    7 changes: 3 additions & 4 deletions jQueryMobile_Boilerplate
    Original file line number Diff line number Diff line change
    @@ -5,10 +5,9 @@

    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta charset="UTF-8">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />

    <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
    </head>
    <body>

  2. tjntun revised this gist Jul 9, 2013. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions jQueryMobile_Boilerplate
    Original file line number Diff line number Diff line change
    @@ -1,12 +1,13 @@
    <!DOCTYPE html>
    <html>
    <head>
    <title>Page Title</title>
    <title></title>

    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta charset="UTF-8">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>

    <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
    </head>
    <body>
  3. tjntun revised this gist Jan 7, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion jQueryMobile_Boilerplate
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@
    <title>Page Title</title>

    <meta name="viewport" content="width=device-width, initial-scale=1">

    <meta charset="UTF-8">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
  4. tjntun renamed this gist Jan 7, 2013. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  5. tjntun created this gist Jan 7, 2013.
    30 changes: 30 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,30 @@
    <!DOCTYPE html>
    <html>
    <head>
    <title>Page Title</title>

    <meta name="viewport" content="width=device-width, initial-scale=1">

    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
    </head>
    <body>

    <div data-role="page">

    <div data-role="header">
    <h1>Page Title</h1>
    </div><!-- /header -->

    <div data-role="content">
    <p>Page content goes here.</p>
    </div><!-- /content -->

    <div data-role="footer">
    <h4>Page Footer</h4>
    </div><!-- /footer -->
    </div><!-- /page -->

    </body>
    </html>