Basic HTML Document
This is the basic HTML needed to take advantage of the "Design 2.0"'s new core.
<!DOCTYPE html> <!--[if lt IE 9]><html lang="en" class="no-js lt-ie10 lt-ie9"><![endif]--> <!--[if IE 9]><html lang="en" class="no-js is-ie9 lt-ie10"><![endif]--> <!--[if gt IE 9]><!--><html lang="en" class="no-js"><!--<![endif]--> <head> <!-- Default meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Page title --> <title>Page Title Goes Here</title> <!-- CSS --> <link rel="stylesheet" href="path/to/css/core.min.css"> </head> <body class="[...]"> Custom markup goes here... <!-- JS --> <script src="path/to/js/jquery.min.js"></script> <script src="path/to/js/vendor.all.js"></script> <script src="path/to/js/core.js"></script> <!-- Analytics code --> </body> </html>