Last active
November 21, 2016 09:59
-
-
Save dotku/27afdfa53d001adc32bed8ad4fbea4f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | |
| <title>TITLE</title> | |
| <link href="/lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> | |
| <script src="/lib/angular/angular.js"></script> | |
| <script src="/lib/jquery/dist/jquery.min.js"></script> | |
| <script src="/lib/bootstrap/dist/js/bootstrap.min.js"></script> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1>TITLE</h1> | |
| </div> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | |
| <title><?php echo C('SITE_TITLE'); ?></title> | |
| <link href="/lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> | |
| <script src="/lib/angular/angular.js"></script> | |
| <script src="/lib/jquery/dist/jquery.min.js"></script> | |
| <script src="/lib/bootstrap/dist/js/bootstrap.min.js"></script> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1><?php echo C('SITE_TITLE'); ?></h1> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment