Copybara bot | be50d49 | 2023-11-30 00:16:42 +0100 | [diff] [blame^] | 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <include src="include/_head.html"></include> |
| 5 | <title>Material Design Lite Extensions</title> |
| 6 | </head> |
| 7 | |
| 8 | <body> |
| 9 | <div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header"> |
| 10 | <include src="include/_header.html"></include> |
| 11 | <include src="include/_drawer.html"></include> |
| 12 | <main id="mount" class="mdl-layout__content"> |
| 13 | <include src="include/_index.html"></include> |
| 14 | </main> |
| 15 | </div> |
| 16 | <include src="include/_scripts.html"></include> |
| 17 | <script> |
| 18 | (function() { |
| 19 | 'use strict'; |
| 20 | document.addEventListener('DOMContentLoaded', function() { |
| 21 | var title = document.querySelector('#header-title'); |
| 22 | if(title) { |
| 23 | title.innerHTML = 'Material Design Lite Extensions'; |
| 24 | } |
| 25 | }); |
| 26 | }()); |
| 27 | </script> |
| 28 | </body> |
| 29 | </html> |