2017-12-12 20:41:32 +01:00
<!DOCTYPE html>
< html >
< head >
< title > Pixel Display< / title >
< link rel = "stylesheet" type = "text/css" href = "css/bulma.css" >
< link rel = "stylesheet" type = "text/css" href = "css/app.css" >
< meta http-equiv = "Content-type" content = "text/html; charset=utf-8" / >
< meta name = viewport content = "width=device-width, initial-scale=1" >
< script src = "js/app.js" type = "module" async > < / script >
< / head >
< body >
< section class = "hero is-primary" >
< div class = "hero-body" >
< div class = "container" >
< h1 class = "title" > Pixel Display< / h1 >
< h2 class = "subtitle" > Leave a little bit of art, and please keep it clean!< / h2 >
< / div >
< / div >
< / section >
< section class = "section view" >
2017-12-28 01:56:22 +01:00
< a class = "button is-small" id = "captureCamera" > Camera< / a >
2017-12-18 20:39:51 +01:00
< a class = "button is-small is-success" id = "submitImage" > Submit< / a >
2017-12-12 20:41:32 +01:00
< br / > < br / >
< div class = "columns" >
< div class = "column is-half" id = "canvasHolder" >
< / div >
< div class = "column" id = "paletteHolder" >
< / div >
< / div >
2017-12-28 01:56:22 +01:00
< video id = "videoStream" > < / video >
2017-12-12 20:41:32 +01:00
< / section >
< footer class = "footer" >
< div class = "container" >
< div class = "content has-text-centered" >
< p >
2017-12-28 01:56:22 +01:00
< strong > Pixel Display< / strong > (pixdisp). The source code is licensed < a href = "http://opensource.org/licenses/mit-license.php" target = "_blank" > MIT< / a > . < a href = "https://github.com/sexybiggetje/pixdisp" target = "_blank" > Fork, patch, contribute at Github< / a > .
2017-12-12 20:41:32 +01:00
< / p >
< / div >
< / div >
< / footer >
< / body >
< / html >