|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | + <title>Webpack starter basic</title> |
| 7 | + <!-- Twitter Card data --> |
| 8 | + <meta name="twitter:card" value="Webpack basic starter project"> |
| 9 | + <meta name="Description" content="A simple webpack starter project for your basic web development needs."/> |
| 10 | + <!-- Open Graph data --> |
| 11 | + <meta property="og:title" content="Webpack basic starter project" /> |
| 12 | + <meta property="og:type" content="article" /> |
| 13 | + <meta property="og:url" content="https://lifenautjoe.github.io/webpack-starter-basic/" /> |
| 14 | + <meta property="og:image" content="https://i.snag.gy/i3eMBc.jpg" /> |
| 15 | + <meta property="og:description" content="A simple webpack starter project for your basic web development needs." /> |
| 16 | + <link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700" rel="stylesheet"> |
| 17 | +</head> |
| 18 | +<body> |
| 19 | +<!-- DEMO Project page content STARTS --> |
| 20 | +<div class="video-background"> |
| 21 | + <div class="video-foreground"> |
| 22 | + <iframe |
| 23 | + src="https://www.youtube.com/embed/iIEIjo4dvSs?controls=0&showinfo=0&rel=0&autoplay=1&loop=1&playlist=iIEIjo4dvSs" |
| 24 | + frameborder="0" allowfullscreen></iframe> |
| 25 | + </div> |
| 26 | +</div> |
| 27 | +<div class="splash"> |
| 28 | + <div class="splash__content"> |
| 29 | + <div class="splash-title"> |
| 30 | + <a href="https://github.com/lifenautjoe/webpack-starter-basic" target="_blank"><img class="splash-title__img" |
| 31 | + src="<%= require('./src/assets/logo-on-dark-bg.png') %>" |
| 32 | + alt="webpack logo"></a> |
| 33 | + </div> |
| 34 | + <div class="splash-overview"> |
| 35 | + <h1 class="splash-overview__heading">I'm a a simple webpack starter project for your basic web development needs. |
| 36 | + </h1> |
| 37 | + <div class="splash-overview__star"> |
| 38 | + <!-- Place this tag where you want the button to render. --> |
| 39 | + <a class="github-button" href="https://github.com/lifenautjoe/webpack-starter-basic" data-show-count="true" |
| 40 | + aria-label="Star lifenautjoe/webpack3-starter on GitHub">Star</a> |
| 41 | + </div> |
| 42 | + <div class="splash-overview__conclusion"> |
| 43 | + <strong> No <a href="https://pragprog.com/the-pragmatic-programmer/extracts/wizards">wizard code</a>, |
| 44 | + understandable, scalable.</strong> |
| 45 | + </div> |
| 46 | + <div class="splash-overview__details"> |
| 47 | + A <strong>minimal</strong> yet <strong>rich</strong> set of features to get you going. |
| 48 | + <div class="splash-overview-plugins"> |
| 49 | + <button id="plugins-trigger" class="splash-overview-plugins__trigger"> |
| 50 | + Show features |
| 51 | + </button> |
| 52 | + <ul id="plugins" class="splash-overview-plugins__list"> |
| 53 | + <li class="splash-overview-plugins__item"> |
| 54 | + <a target="_blank" href="https://github.com/babel/babel-loader">Use the latest JavaScript</a> |
| 55 | + </li> |
| 56 | + <li class="splash-overview-plugins__item"> |
| 57 | + <a target="_blank" href="https://github.com/webpack-contrib/sass-loader">Write styles in Sass</a> |
| 58 | + </li> |
| 59 | + <li class="splash-overview-plugins__item"> |
| 60 | + <a target="_blank" href="https://github.com/webpack-contrib/url-loader">Load and bundle your assets</a> |
| 61 | + </li> |
| 62 | + <li class="splash-overview-plugins__item"> |
| 63 | + <a target="_blank" |
| 64 | + href="https://github.com/webpack/webpack-dev-server">Start a development server and preview your work</a> |
| 65 | + </li> |
| 66 | + <li class="splash-overview-plugins__item"> |
| 67 | + <a target="_blank" href="https://github.com/postcss/autoprefixer">Automatic css vendor prefixes</a> |
| 68 | + </li> |
| 69 | + <li class="splash-overview-plugins__item"> |
| 70 | + <a target="_blank" href="https://github.com/webpack-contrib/uglifyjs-webpack-plugin">Optimizes scripts for production</a> |
| 71 | + </li> |
| 72 | + <li class="splash-overview-plugins__item"> |
| 73 | + <a target="_blank" href="https://github.com/NMFR/optimize-css-assets-webpack-plugin">Optimizes styles for production</a> |
| 74 | + </li> |
| 75 | + <li class="splash-overview-plugins__item"> |
| 76 | + <a target="_blank" href="https://github.com/jantimon/favicons-webpack-plugin">Generates favicons</a> |
| 77 | + </li> |
| 78 | + </ul> |
| 79 | + </div> |
| 80 | + </div> |
| 81 | + <div class="splash-overview-start"> |
| 82 | + <div class="splash-overview-start__command"> |
| 83 | + git clone https://github.com/lifenautjoe/webpack-starter-basic PROJECT-NAME |
| 84 | + </div> |
| 85 | + <div class="splash-overview-start__command"> |
| 86 | + cd PROJECT-NAME |
| 87 | + </div> |
| 88 | + <div class="splash-overview-start__command"> |
| 89 | + npm install <span class="splash-overview-start__comment"># Install dependencies </span> |
| 90 | + </div> |
| 91 | + <div class="splash-overview-start__command"> |
| 92 | + npm run kickstart <span class="splash-overview-start__comment"># Configure your project</span> |
| 93 | + </div> |
| 94 | + <div class="splash-overview-start__command"> |
| 95 | + npm run start <span class="splash-overview-start__comment"># Start the development server</span> |
| 96 | + </div> |
| 97 | + <div class="splash-overview-start__command"> |
| 98 | + npm run build <span class="splash-overview-start__comment"># Build for production</span> |
| 99 | + </div> |
| 100 | + </div> |
| 101 | + <div class="splash-overview-issues"> |
| 102 | + <div>Have an issue or are in need of guidance?</div> |
| 103 | + <strong>Open an issue <a |
| 104 | + href="https://github.com/lifenautjoe/webpack3-starter/issues">here</a>. </strong> |
| 105 | + </div> |
| 106 | + <div class="splash-overview-footer"> |
| 107 | + A project by <strong><a target="_blank" href="https://www.lifenautjoe.com">@lifenautjoe</a></strong>. |
| 108 | + </div> |
| 109 | + </div> |
| 110 | + </div> |
| 111 | +</div> |
| 112 | +<script async defer src="https://buttons.github.io/buttons.js"></script> |
| 113 | +<!-- Global Site Tag (gtag.js) - Google Analytics --> |
| 114 | +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-101423651-2"></script> |
| 115 | +<script> |
| 116 | + window.dataLayer = window.dataLayer || []; |
| 117 | + function gtag(){dataLayer.push(arguments);} |
| 118 | + gtag('js', new Date()); |
| 119 | + |
| 120 | + gtag('config', 'UA-101423651-2'); |
| 121 | +</script> |
| 122 | +<!-- DEMO Project page content ENDS --> |
| 123 | +</body> |
| 124 | +</html> |
0 commit comments