├── README.md ├── base.html ├── css ├── basic.css ├── legacy.css └── unicorn.css ├── favicon.ico ├── index.html ├── js ├── es2015.js └── es5.js └── test.js /README.md: -------------------------------------------------------------------------------- 1 | # webstrap 2 | 3 | From [A Bloatless Web](https://medium.com/@WebReflection/a-bloatless-web-d4f811c7991b) post, 4 | bootstrap the Web for every browser. 5 | 6 | All the snippets used in the post have been documented in the following repository: 7 | https://github.com/WebReflection/header-snippets#header-snippets 8 | 9 | There is another way to bring in bundlers too, it's called [Universal Bundle Loader](https://github.com/WebReflection/ubl#ubl). 10 | -------------------------------------------------------------------------------- /base.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Zero Web Bootstrap 8 | 9 | 10 | 14 | 15 | 16 | 35 | 46 | 47 | 48 |

Modern Web

49 | 50 | -------------------------------------------------------------------------------- /css/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/webstrap/0898e1ed8ae4deb574e7969424add8c451c2002d/css/basic.css -------------------------------------------------------------------------------- /css/legacy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/webstrap/0898e1ed8ae4deb574e7969424add8c451c2002d/css/legacy.css -------------------------------------------------------------------------------- /css/unicorn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/webstrap/0898e1ed8ae4deb574e7969424add8c451c2002d/css/unicorn.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/webstrap/0898e1ed8ae4deb574e7969424add8c451c2002d/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Webstrap - A Web Bootstrap 8 | 9 | 10 | 11 | 12 | 13 | 16 | 19 | 20 | 21 | 24 | 25 | 26 | 29 | 32 | 39 | 42 | 43 | 44 | 57 | 61 | 62 | 63 | 82 | 90 | 91 | 92 |

Modern Web

93 | 94 | -------------------------------------------------------------------------------- /js/es2015.js: -------------------------------------------------------------------------------- 1 | DOMContentLoaded.then(() => { 2 | document.body.appendChild( 3 | document.createElement('p') 4 | ).innerHTML = '[ it could work here too ]'; 5 | }); 6 | -------------------------------------------------------------------------------- /js/es5.js: -------------------------------------------------------------------------------- 1 | DOMContentLoaded.then(function () { 2 | document.body.appendChild( 3 | document.createElement('p') 4 | ).innerHTML = '[ it could work here too ]'; 5 | }); 6 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | print(123) 2 | --------------------------------------------------------------------------------