├── .gitignore ├── LICENSE ├── README.md ├── boxes ├── Connect4Box.js ├── MatchBox.js ├── RequestBox.js ├── TextBox.js ├── VoteBox.js ├── _Readme.txt ├── _TemplateBox.js └── shared │ ├── Box.js │ └── Dispatcher.js ├── config.template.js ├── package.json ├── public ├── css │ ├── bootstrap.min.css │ ├── lansite.css │ └── sweetalert.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.min.js │ ├── boxes │ ├── Connect4Box.js │ ├── MatchBox.js │ ├── RequestBox.js │ ├── TextBox.js │ ├── VoteBox.js │ └── _TemplateBox.js │ ├── client.js │ ├── jquery.min.js │ ├── js.cookie.min.js │ ├── moment.min.js │ ├── npm.js │ └── sweetalert.min.js ├── server.js ├── templates ├── boxes │ ├── Connect4Box.handlebars │ ├── MatchBox.handlebars │ ├── RequestBox.handlebars │ ├── TextBox.handlebars │ ├── VoteBox.handlebars │ └── _TemplateBox.handlebars └── popups │ ├── MatchBoxPopup.handlebars │ ├── TextBoxPopup.handlebars │ ├── VoteBoxPopup.handlebars │ └── _TemplatePopup.handlebars └── views ├── admin.handlebars ├── home.handlebars ├── layouts ├── nonstream.handlebars └── stream.handlebars ├── main.handlebars └── partials ├── head.handlebars ├── login.handlebars ├── navbar.handlebars ├── scripts_base.handlebars ├── scripts_stream.handlebars └── sidebar.handlebars /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/README.md -------------------------------------------------------------------------------- /boxes/Connect4Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/Connect4Box.js -------------------------------------------------------------------------------- /boxes/MatchBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/MatchBox.js -------------------------------------------------------------------------------- /boxes/RequestBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/RequestBox.js -------------------------------------------------------------------------------- /boxes/TextBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/TextBox.js -------------------------------------------------------------------------------- /boxes/VoteBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/VoteBox.js -------------------------------------------------------------------------------- /boxes/_Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/_Readme.txt -------------------------------------------------------------------------------- /boxes/_TemplateBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/_TemplateBox.js -------------------------------------------------------------------------------- /boxes/shared/Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/shared/Box.js -------------------------------------------------------------------------------- /boxes/shared/Dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/boxes/shared/Dispatcher.js -------------------------------------------------------------------------------- /config.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/config.template.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/package.json -------------------------------------------------------------------------------- /public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/lansite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/css/lansite.css -------------------------------------------------------------------------------- /public/css/sweetalert.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/css/sweetalert.min.css -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/js/boxes/Connect4Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/boxes/Connect4Box.js -------------------------------------------------------------------------------- /public/js/boxes/MatchBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/boxes/MatchBox.js -------------------------------------------------------------------------------- /public/js/boxes/RequestBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/boxes/RequestBox.js -------------------------------------------------------------------------------- /public/js/boxes/TextBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/boxes/TextBox.js -------------------------------------------------------------------------------- /public/js/boxes/VoteBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/boxes/VoteBox.js -------------------------------------------------------------------------------- /public/js/boxes/_TemplateBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/boxes/_TemplateBox.js -------------------------------------------------------------------------------- /public/js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/client.js -------------------------------------------------------------------------------- /public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/jquery.min.js -------------------------------------------------------------------------------- /public/js/js.cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/js.cookie.min.js -------------------------------------------------------------------------------- /public/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/moment.min.js -------------------------------------------------------------------------------- /public/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/npm.js -------------------------------------------------------------------------------- /public/js/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/public/js/sweetalert.min.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/server.js -------------------------------------------------------------------------------- /templates/boxes/Connect4Box.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/boxes/Connect4Box.handlebars -------------------------------------------------------------------------------- /templates/boxes/MatchBox.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/boxes/MatchBox.handlebars -------------------------------------------------------------------------------- /templates/boxes/RequestBox.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/boxes/RequestBox.handlebars -------------------------------------------------------------------------------- /templates/boxes/TextBox.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/boxes/TextBox.handlebars -------------------------------------------------------------------------------- /templates/boxes/VoteBox.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/boxes/VoteBox.handlebars -------------------------------------------------------------------------------- /templates/boxes/_TemplateBox.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/boxes/_TemplateBox.handlebars -------------------------------------------------------------------------------- /templates/popups/MatchBoxPopup.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/popups/MatchBoxPopup.handlebars -------------------------------------------------------------------------------- /templates/popups/TextBoxPopup.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/popups/TextBoxPopup.handlebars -------------------------------------------------------------------------------- /templates/popups/VoteBoxPopup.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/popups/VoteBoxPopup.handlebars -------------------------------------------------------------------------------- /templates/popups/_TemplatePopup.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/templates/popups/_TemplatePopup.handlebars -------------------------------------------------------------------------------- /views/admin.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/admin.handlebars -------------------------------------------------------------------------------- /views/home.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/home.handlebars -------------------------------------------------------------------------------- /views/layouts/nonstream.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/layouts/nonstream.handlebars -------------------------------------------------------------------------------- /views/layouts/stream.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/layouts/stream.handlebars -------------------------------------------------------------------------------- /views/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/main.handlebars -------------------------------------------------------------------------------- /views/partials/head.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/partials/head.handlebars -------------------------------------------------------------------------------- /views/partials/login.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/partials/login.handlebars -------------------------------------------------------------------------------- /views/partials/navbar.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/partials/navbar.handlebars -------------------------------------------------------------------------------- /views/partials/scripts_base.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/partials/scripts_base.handlebars -------------------------------------------------------------------------------- /views/partials/scripts_stream.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/partials/scripts_stream.handlebars -------------------------------------------------------------------------------- /views/partials/sidebar.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerkrewson/lansite/HEAD/views/partials/sidebar.handlebars --------------------------------------------------------------------------------