Copybara bot | be50d49 | 2023-11-30 00:16:42 +0100 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps."> |
| 7 | <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> |
| 8 | <title>Material Design Lite</title> |
| 9 | |
| 10 | <!-- Add to homescreen --> |
| 11 | <link rel="manifest" href="manifest.json"> |
| 12 | |
| 13 | <!-- Fallback to homescreen for Chrome <39 on Android --> |
| 14 | <meta name="mobile-web-app-capable" content="yes"> |
| 15 | <meta name="application-name" content="Material Design Lite"> |
| 16 | <link rel="icon" sizes="192x192" href="../assets/android-desktop.png"> |
| 17 | |
| 18 | <!-- Add to homescreen for Safari on iOS --> |
| 19 | <meta name="apple-mobile-web-app-capable" content="yes"> |
| 20 | <meta name="apple-mobile-web-app-status-bar-style" content="black"> |
| 21 | <meta name="apple-mobile-web-app-title" content="Material Design Lite"> |
| 22 | <link rel="apple-touch-icon" href="../assets/ios-desktop.png"> |
| 23 | |
| 24 | <!-- TODO: Tile icon for Win8 (144x144 + tile color) --> |
| 25 | <!-- <meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png"> --> |
| 26 | <!-- <meta name="msapplication-TileColor" content="#3372DF"> --> |
| 27 | |
| 28 | <meta name="theme-color" content="#263238"> |
| 29 | |
| 30 | <link rel="shortcut icon" href="../assets/favicon.png"> |
| 31 | <!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones --> |
| 32 | <!-- |
| 33 | <link rel="canonical" href="http://www.example.com/"> |
| 34 | --> |
| 35 | |
| 36 | <!-- Page styles --> |
| 37 | <link rel="stylesheet" href="../assets/prism-default.css"> |
| 38 | <link rel="stylesheet" href="../material.min.css"> |
| 39 | <link rel="stylesheet" href="../assets/main.css"> |
| 40 | |
| 41 | <!-- Fonts --> |
| 42 | <link href='https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en' rel='stylesheet' type='text/css'> |
| 43 | <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> |
| 44 | </head> |
| 45 | <body class="templates"> |
| 46 | <!-- Google Analytics: change UA-XXXXX-X to be your site's ID --> |
| 47 | <script> |
| 48 | // if (document.location.hostname !== 'localhost' && |
| 49 | // document.location.hostname !== '127.0.0.1' && |
| 50 | // document.location.hostname.search('.corp.') === -1) { |
| 51 | (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
| 52 | (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), |
| 53 | m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) |
| 54 | })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
| 55 | ga('create', 'UA-25993200-9', 'auto'); |
| 56 | // If a specific component page is loaded directly we'll attribute the |
| 57 | // page view to the specific component's page |
| 58 | if (window.location.pathname.indexOf('/components/') !== -1 && |
| 59 | window.location.hash.indexOf('-section') !== -1) { |
| 60 | ga('send', 'pageview', '/components/' + |
| 61 | window.location.hash.split('#')[1].split('/')[0]); |
| 62 | } else { |
| 63 | ga('send', 'pageview'); |
| 64 | } |
| 65 | // } |
| 66 | |
| 67 | // Setup error tracking before anything else runs. |
| 68 | window.onerror = function(message, file, lineNumber, columnNumber, error) { |
| 69 | try { |
| 70 | if (error !== undefined) { |
| 71 | message = error.stack; |
| 72 | } |
| 73 | ga('send', 'event', 'error', file + ':' + lineNumber, String(message)); |
| 74 | } catch (e) { |
| 75 | // no-op |
| 76 | } |
| 77 | }; |
| 78 | </script> |
| 79 | <div class="image-preloader"></div> |
| 80 | <div class="docs-layout mdl-layout mdl-js-layout"> |
| 81 | <header class="docs-layout-header mdl-layout__header"> |
| 82 | <div class="mdl-layout__header-row"> |
| 83 | <span class="docs-layout-title mdl-layout-title"><a href="../">Material<br>Design<br>Lite</a></span> |
| 84 | </div> |
| 85 | <div class="docs-navigation__container"> |
| 86 | <nav class="docs-navigation mdl-navigation"> |
| 87 | <a href="../index.html" class="mdl-navigation__link about">About</a> |
| 88 | <a href="../started/index.html" class="mdl-navigation__link started">Getting Started</a> |
| 89 | <a href="../templates/index.html" class="mdl-navigation__link templates">Templates</a> |
| 90 | <a href="../components/index.html" class="mdl-navigation__link components">Components</a> |
| 91 | <a href="../styles/index.html" class="mdl-navigation__link styles">Styles</a> |
| 92 | <a href="../customize/index.html" class="mdl-navigation__link customize">Customize</a> |
| 93 | <a href="../showcase/index.html" class="mdl-navigation__link showcase">Showcase</a> |
| 94 | <a href="../faq/index.html" class="mdl-navigation__link faq">FAQ</a> |
| 95 | <div class="spacer"></div> |
| 96 | <a href="https://github.com/google/material-design-lite" class="mdl-navigation__link mdl-navigation__link--icon github"><i class="material-icons">link</i><span>GitHub</span></a> |
| 97 | <a href="../started/index.html#download" class="mdl-navigation__link mdl-navigation__link--icon download"> |
| 98 | <i class="material-icons"></i><span>Download</span> |
| 99 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--fab mdl-button--mini-fab mdl-color--lime-A200"> |
| 100 | <i class="material-icons"></i> |
| 101 | </button> |
| 102 | </a> |
| 103 | </nav> |
| 104 | </div> |
| 105 | <i class="material-icons scrollindicator scrollindicator--right"></i> |
| 106 | <i class="material-icons scrollindicator scrollindicator--left"></i> |
| 107 | </header> |
| 108 | <main class="docs-layout-content mdl-layout__content mdl-color-text--grey-600"> |
| 109 | <div class="content mdl-grid mdl-grid--no-spacing" id="content"> |
| 110 | <div class="subpageheader mdl-cell--12-col">Templates</div> |
| 111 | |
| 112 | |
| 113 | <section class="template template--blog docs-text-styling mdl-grid mdl-cell mdl-cell--12-col"> |
| 114 | <img src="../assets/templates/blog.jpg" |
| 115 | srcset="../assets/templates/blog.jpg 1x, ../assets/templates/blog_2x.jpg 2x" |
| 116 | class="template__preview mdl-cell mdl-cell--8-col"> |
| 117 | <div class="template__meta mdl-cell mdl-cell--4-col mdl-grid mdl-grid--no-spacing"> |
| 118 | <h3 class="template__header mdl-cell mdl-cell--12-col mdl-typography--body-2">Blog</h3> |
| 119 | <p class="mdl-cell mdl-cell--12-col"> |
| 120 | A mobile focused responsive template that showcases image or text based blog entries, a subscription CTA, search & share links, and an expanded article page with comments, counters and bookmarking capabilities built-in. |
| 121 | </p> |
| 122 | <a href="https://code.getmdl.io/1.3.0/mdl-template-blog.zip" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 123 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 124 | <i class="material-icons">file_download</i> |
| 125 | </button> |
| 126 | Download |
| 127 | </a> |
| 128 | <a href="../templates/blog/index.html" target="_blank" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 129 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 130 | <i class="material-icons">arrow_forward</i> |
| 131 | </button> |
| 132 | Preview |
| 133 | </a> |
| 134 | </div> |
| 135 | </section> |
| 136 | |
| 137 | <section class="template template--android-dot-com docs-text-styling mdl-grid mdl-cell mdl-cell--12-col"> |
| 138 | <img src="../assets/templates/android-dot-com.jpg" |
| 139 | srcset="../assets/templates/android-dot-com.jpg 1x, ../assets/templates/android-dot-com_2x.jpg 2x" |
| 140 | class="template__preview mdl-cell mdl-cell--8-col"> |
| 141 | <div class="template__meta mdl-cell mdl-cell--4-col mdl-grid mdl-grid--no-spacing"> |
| 142 | <h3 class="template__header mdl-cell mdl-cell--12-col mdl-typography--body-2">Android.com MDL skin</h3> |
| 143 | <p class="mdl-cell mdl-cell--12-col"> |
| 144 | A Material Design Lite version of the current android.com site, using the same content with a horizontal navigation, feature carousel and long form scrolling sub pages. |
| 145 | </p> |
| 146 | <a href="https://code.getmdl.io/1.3.0/mdl-template-android-dot-com.zip" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 147 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 148 | <i class="material-icons">file_download</i> |
| 149 | </button> |
| 150 | Download |
| 151 | </a> |
| 152 | <a href="../templates/android-dot-com/index.html" target="_blank" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 153 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 154 | <i class="material-icons">arrow_forward</i> |
| 155 | </button> |
| 156 | Preview |
| 157 | </a> |
| 158 | </div> |
| 159 | </section> |
| 160 | |
| 161 | <section class="template template--dashboard docs-text-styling mdl-grid mdl-cell mdl-cell--12-col"> |
| 162 | <img src="../assets/templates/dashboard.jpg" |
| 163 | srcset="../assets/templates/dashboard.jpg 1x, ../assets/templates/dashboard_2x.jpg 2x" |
| 164 | class="template__preview mdl-cell mdl-cell--8-col"> |
| 165 | <div class="template__meta mdl-cell mdl-cell--4-col mdl-grid mdl-grid--no-spacing"> |
| 166 | <h3 class="template__header mdl-cell mdl-cell--12-col mdl-typography--body-2">Dashboard</h3> |
| 167 | <p class="mdl-cell mdl-cell--12-col"> |
| 168 | A modular responsive template built to display data visualizations and information with a clear vertical nav, user profile, search and dedicated space for updates and filters. |
| 169 | </p> |
| 170 | <a href="https://code.getmdl.io/1.3.0/mdl-template-dashboard.zip" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 171 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 172 | <i class="material-icons">file_download</i> |
| 173 | </button> |
| 174 | Download |
| 175 | </a> |
| 176 | <a href="../templates/dashboard/index.html" target="_blank" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 177 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 178 | <i class="material-icons">arrow_forward</i> |
| 179 | </button> |
| 180 | Preview |
| 181 | </a> |
| 182 | </div> |
| 183 | </section> |
| 184 | |
| 185 | <section class="template template--portfolio docs-text-styling mdl-grid mdl-cell mdl-cell--12-col"> |
| 186 | <img src="../assets/templates/portfolio.jpg" |
| 187 | srcset="../assets/templates/portfolio.jpg 1x, ../assets/templates/portfolio_2x.jpg 2x" |
| 188 | class="template__preview mdl-cell mdl-cell--8-col"> |
| 189 | <div class="template__meta mdl-cell mdl-cell--4-col mdl-grid mdl-grid--no-spacing"> |
| 190 | <h3 class="template__header mdl-cell mdl-cell--12-col mdl-typography--body-2">Portfolio</h3> |
| 191 | <p class="mdl-cell mdl-cell--12-col"> |
| 192 | A modern and clean looking template for a portfolio/blog build with Material Design Lite. Included are a top nav bar that comes with the waterfall header component, cards to display different types of content and a footer. |
| 193 | </p> |
| 194 | <a href="https://code.getmdl.io/1.3.0/mdl-template-portfolio.zip" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 195 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 196 | <i class="material-icons">file_download</i> |
| 197 | </button> |
| 198 | Download |
| 199 | </a> |
| 200 | <a href="../templates/portfolio/index.html" target="_blank" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 201 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 202 | <i class="material-icons">arrow_forward</i> |
| 203 | </button> |
| 204 | Preview |
| 205 | </a> |
| 206 | </div> |
| 207 | </section> |
| 208 | |
| 209 | <section class="template template--text-only docs-text-styling mdl-grid mdl-cell mdl-cell--12-col"> |
| 210 | <img src="../assets/templates/text-only.jpg" |
| 211 | srcset="../assets/templates/text-only.jpg 1x, ../assets/templates/text-only_2x.jpg 2x" |
| 212 | class="template__preview mdl-cell mdl-cell--8-col"> |
| 213 | <div class="template__meta mdl-cell mdl-cell--4-col mdl-grid mdl-grid--no-spacing"> |
| 214 | <h3 class="template__header mdl-cell mdl-cell--12-col mdl-typography--body-2">Text-heavy webpage</h3> |
| 215 | <p class="mdl-cell mdl-cell--12-col"> |
| 216 | Built for presenting content that is information dense, easily updatable, and optimized for legibility, this template has a sticky horizontal top nav on mobile, feature callouts, cards and a site map footer with a deep-linked table of contents. |
| 217 | </p> |
| 218 | <a href="https://code.getmdl.io/1.3.0/mdl-template-text-only.zip" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 219 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 220 | <i class="material-icons">file_download</i> |
| 221 | </button> |
| 222 | Download |
| 223 | </a> |
| 224 | <a href="../templates/text-only/index.html" target="_blank" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 225 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 226 | <i class="material-icons">arrow_forward</i> |
| 227 | </button> |
| 228 | Preview |
| 229 | </a> |
| 230 | </div> |
| 231 | </section> |
| 232 | |
| 233 | <section class="template template--article docs-text-styling mdl-grid mdl-cell mdl-cell--12-col"> |
| 234 | <img src="../assets/templates/article.jpg" |
| 235 | srcset="../assets/templates/article.jpg 1x, ../assets/templates/article_2x.jpg 2x" |
| 236 | class="template__preview mdl-cell mdl-cell--8-col"> |
| 237 | <div class="template__meta mdl-cell mdl-cell--4-col mdl-grid mdl-grid--no-spacing"> |
| 238 | <h3 class="template__header mdl-cell mdl-cell--12-col mdl-typography--body-2">Stand-alone article</h3> |
| 239 | <p class="mdl-cell mdl-cell--12-col"> |
| 240 | A clean layout optimized for presenting text-based content with a breadcrumb nav, search, clear headers and a footer that utilizes a card-like structure to showcase the content. |
| 241 | </p> |
| 242 | <a href="https://code.getmdl.io/1.3.0/mdl-template-article.zip" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 243 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 244 | <i class="material-icons">file_download</i> |
| 245 | </button> |
| 246 | Download |
| 247 | </a> |
| 248 | <a href="../templates/article/index.html" target="_blank" class="mdl-cell mdl-cell--6-col-desktop mdl-cell--4-col-tablet mdl-cell--2-col-phone"> |
| 249 | <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> |
| 250 | <i class="material-icons">arrow_forward</i> |
| 251 | </button> |
| 252 | Preview |
| 253 | </a> |
| 254 | </div> |
| 255 | </section> |
| 256 | |
| 257 | |
| 258 | </div> |
| 259 | <section class="docs-text-styling download mdl-color--grey-800"> |
| 260 | <a href="../started/index.html#download" class="mdl-color-text--grey-50">Download Kit</a> |
| 261 | </section> |
| 262 | <footer class="docs-text-styling docs-footer mdl-mini-footer mdl-color--grey-900"> |
| 263 | <ul> |
| 264 | <li class="mdl-mini-footer--social-btn"> |
| 265 | <a href="https://twitter.com/googledesign" class="social-btn social-btn__twitter" role="button" title="Twitter"></a> |
| 266 | </li> |
| 267 | <li class="mdl-mini-footer--social-btn"> |
| 268 | <a href="https://github.com/google/material-design-lite" class="social-btn social-btn__github" role="button" title="GitHub"></a> |
| 269 | </li> |
| 270 | <li class="mdl-mini-footer--social-btn"> |
| 271 | <a href="https://plus.google.com/+googledesign" class="social-btn social-btn__gplus" role="button" title="Google+"></a> |
| 272 | </li> |
| 273 | </ul> |
| 274 | <ul class="docs-link-list"> |
| 275 | <li><a class="mdl-color-text--grey-600" href="https://developers.google.com/web/starter-kit/">Web Starter Kit</a></li> |
| 276 | <li><a class="mdl-color-text--grey-600" href="https://github.com/google/material-design-lite/issues">Help</a></li> |
| 277 | </ul> |
| 278 | </footer> |
| 279 | </main> |
| 280 | </div> |
| 281 | |
| 282 | <!-- IE Compatibility shims --> |
| 283 | <!--[if lt IE 9]> |
| 284 | <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js""></script> |
| 285 | <![endif]--> |
| 286 | |
| 287 | <!--[if IE]> |
| 288 | <script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.1.7/es5-shim.min.js"></script> |
| 289 | <script src="//cdnjs.cloudflare.com/ajax/libs/classlist/2014.01.31/classList.min.js"></script> |
| 290 | <script src="//cdnjs.cloudflare.com/ajax/libs/selectivizr/1.0.2/selectivizr-min.js"></script> |
| 291 | <script src="//cdnjs.cloudflare.com/ajax/libs/flexie/1.0.3/flexie.min.js"></script> |
| 292 | <link href="../assets/ie.css" rel="stylesheet"> |
| 293 | <![endif]--> |
| 294 | <!-- end shims --> |
| 295 | |
| 296 | |
| 297 | <!-- Material Design Lite --> |
| 298 | <script src="../material.min.js"></script> |
| 299 | <!-- Add Copy-to-CodePen buttons to code blocks --> |
| 300 | <script src="../assets/codepen.js"></script> |
| 301 | <!-- Enable Prism syntax highlighting --> |
| 302 | <script src="../assets/prism.js"></script> |
| 303 | <script src="../assets/prism-markup.min.js"></script> |
| 304 | <script src="../assets/prism-javascript.min.js"></script> |
| 305 | <script src="../assets/prism-css.min.js"></script> |
| 306 | <script src="../assets/prism-bash.min.js"></script> |
| 307 | <script src="../assets/main.js"></script> |
| 308 | <!-- Built with love using Material Design Lite --> |
| 309 | </body> |
| 310 | </html> |