diff --git a/.gitignore b/.gitignore index 376ff76..512069a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Libraries /vendor /node_modules +/npm-debug.log # Configuration /config/config.ini @@ -14,3 +15,7 @@ [Dd]esktop.ini $RECYCLE.BIN/ .DS_Store + +# Compiled/copied assets +/public/js +/public/css diff --git a/app/Template.php b/app/Template.php index b239116..5a71910 100644 --- a/app/Template.php +++ b/app/Template.php @@ -77,7 +77,7 @@ class Template public static function init() { // Initialise Twig Filesystem Loader - $twigLoader = new Twig_Loader_Filesystem(ROOT . 'templates/' . self::$name); + $twigLoader = new Twig_Loader_Filesystem(ROOT . 'views/' . self::$name); // Environment variable $twigEnv = []; diff --git a/config/config.example.ini b/config/config.example.ini index 5fe1052..356435e 100644 --- a/config/config.example.ini +++ b/config/config.example.ini @@ -33,6 +33,9 @@ ; Name of the site name = Sakura +; Description of the site +description = Test site + ; Design used by the site, must be a folder in templates/ design = yuuno diff --git a/gulpfile.js b/gulpfile.js index e5569a0..7a35b8b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,13 +1,19 @@ var elixir = require('laravel-elixir'), elixirTypscript = require('elixir-typescript'), - nodePath = '../../../node_modules/'; + nodePath = '../../node_modules/'; + +elixir.config.assetsPath = './assets'; elixir(function(mix) { + mix - .less('app.less') - .typescript('**/*.ts', 'public/js/app.js') + .less('aitemu/master.less', 'public/css/aitemu.css') + .less('yuuno/master.less', 'public/css/yuuno.css') + .typescript('master/**/*.ts', 'public/js/master.js') + .typescript('aitemu/**/*.ts', 'public/js/aitemu.js') + .typescript('yuuno/**/*.ts', 'public/js/yuuno.js') .scripts([ nodePath + 'turbolinks/dist/turbolinks.js' - ], 'public/js/libs.js'); + ], 'public/js/libraries.js'); }); diff --git a/package.json b/package.json index 356055a..53e6d74 100644 --- a/package.json +++ b/package.json @@ -4,12 +4,10 @@ "prod": "gulp --production", "dev": "gulp watch" }, - "devDependencies": { + "dependencies": { "gulp": "^3.9.1", "laravel-elixir": "^5.0.0", - "elixir-typescript": "^2.0.0" - }, - "dependencies": { + "elixir-typescript": "^2.0.0", "turbolinks": "^5.0.0" } } diff --git a/public/browserconfig.xml b/public/browserconfig.xml deleted file mode 100644 index 5e038b6..0000000 --- a/public/browserconfig.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - #9475b2 - - - diff --git a/public/content/data/mio/css/feedback.css b/public/content/data/mio/css/feedback.css deleted file mode 100644 index e63c708..0000000 --- a/public/content/data/mio/css/feedback.css +++ /dev/null @@ -1,158 +0,0 @@ -@charset "utf-8"; -hr { - color: #9475B2; - background: #9475B2; - height: 1px; - border: 0; -} -.hidden { - display: none; - visibility: hidden; -} -h1,h2,h3,h4,h5,h6 { - margin: 2px; - padding: 0; -} -h1 { - display: inline-block; -} -h1 a { - color: #609; -} -a { - text-decoration: none; -} -a:hover, a:active { - text-decoration: underline; -} -fieldset { - border: 1px #746677 solid; - margin: 5px; -} -legend { - border: 1px #746677 solid; - background: #9475B2; - color: #306; - padding: 1px 5px; -} -input[type="text"],table.postForm > tbody textarea, select { - width: 302px; -} -input[type="password"] { - width: 231px; -} -input[type="text"], input[type="password"], table.postForm > tbody textarea { - padding: 2px 4px 3px; - border: 1px solid #AAA; - outline: medium none; - font-family: arial,helvetica,sans-serif; - font-size: 10pt; -} -input[type="text"]:focus, input[type="password"]:focus, table.postForm > tbody textarea:focus { - border: 1px solid #746677; -} -#recaptcha_response_field { - margin: 0 2px 0 0; - padding: 2px 4px 3px; - border: 1px solid #AAA; - outline: medium none; - font-family: arial,helvetica,sans-serif; - font-size: 10pt; - width: 302px; -} -#recaptcha_widget img { - cursor: pointer; -} -div#recaptcha_image { - margin: 0 2px 0 0; - border: 1px solid #AAA; - outline: medium none; -} -#recaptcha_response_field { - margin-top: 4px !important; -} -.recaptcha_custom_buttons { - font-size: smaller; -} -table.postForm{ - border-spacing: 1px; -} -table.postForm > tbody > tr > td { - margin: 0; - padding: 0; - font-size: 10pt; -} -table.postForm > tbody > tr > td:first-child { - background: #C9BBCC; - border: 1px #746677 solid; - color: #400070; - font-weight: bold; - padding: 0 5px 0 10px; - font-size: 10pt; - text-align: right; -} -.trip { - font-weight: normal !important; - color: #CC0066; -} -.ban { - color: #F00; - font-weight: 700; - margin-top: 10px; -} -.spoiler { - background: black; - color: black; -} -.spoiler:hover { - color: white !important; -} -.quote{ - color: #789922 !important; -} -.admincap{ - color: #AA0000 !important; -} -.modcap{ - color: #00AA00 !important; -} -.feedbackheader { - padding: 5px; - text-align: center; -} -.boardindex { - margin: 5px; -} -.boardindex hr { - margin: 5px; -} -.boardindex h2, .boardindex h3 { - text-align: center; -} -.boardposting { - margin: 0 auto; - text-align: center; -} -.boardposting table { - margin: 0 auto; - text-align: left; -} -.copyright { - font-size: x-small !important; - font-weight: bold; - text-align: center; -} -fieldset .replylink { - text-align: right; - float: right; - border: 1px #746677 solid; - background: #9475B2; - color: #306; - padding: 1px 5px; - margin: -9px 0; - font-weight: bold; - overflow: hidden; -} -.header .logo { - background: url('//cdn.flashii.net/img/feedback-logo.png') no-repeat -} diff --git a/public/content/data/mio/css/mio.css b/public/content/data/mio/css/mio.css deleted file mode 100644 index 56753f3..0000000 --- a/public/content/data/mio/css/mio.css +++ /dev/null @@ -1,835 +0,0 @@ -/* - Flashii.net Style Codename "Mio" - By Flashwave -*/ - -@charset "utf-8"; - -html { - color: #000000; - font: 12px/20px Georgia, "Times New Roman", Times, serif; -} - -body { - margin: 0; - padding: 0; - font-family: Verdana, Arial, Helvetica, sans-serif; - background: linear-gradient(180deg, #C2AFFE, #FBEEFF) repeat-x scroll center top #FBEEFF; - background-size: auto 200px; - text-align: center; -} - -img.logo { - height: 150px; - width: 450px; - border: 0; - background: url('../images/logo.png') no-repeat scroll left top transparent; - background-size: cover; -} - - -.clear { - clear: both !important; - float: none !important; -} -.hidden { - display: none !important; - visibility: hidden !important; -} - -div.navbar a { - color: #000000; - text-decoration: none; -} - -div.navbar a:hover { - color: #609; -} - -hr { - color: #9475B2; - background: #9475B2; - height: 1px; - border: 0; -} - -div.navbar ul { - display: table; - clear: both; - text-align: center; - margin: 5px auto 0; - border-top: 1px solid; - min-width: 880px; - max-width: 1024px; -} - -div.navbar li { - float: left; - display: block; - text-align: center; - margin-top: -1px; - position: relative; - left: 217px; - z-index: 1; -} - -li.notcurrent { - background: none repeat scroll 0 0 #C9BBCC; - border: 1px solid inherit; - border-left: medium none; - border-image: none; - padding: 2px 1em; -} - -li.current { - background: none repeat scroll 0 0 #FBEEFF; - border-image: none; - padding: 2px 1em 4px; - margin-left: -1px; - border: 1px solid inherit; - border-top: medium none; -} - -li.first { - border-left: 1px solid; -} - -li.fill { - border-top: 1px solid; - padding-bottom: 4px; - width: 100px !important; -} - -div.pagecontent, div.profile { - margin: 5px auto 0; - min-width: 880px; - max-width: 1024px; - border: solid 1px #9475B2; - background: #FBEEFF; -} - -div.profile { - min-height: 246px; -} - -div.profile_cont { - text-align: left; - padding: 0 20px; -} - -div.profile_cont hr { - border: 0 solid #000; - height: 1px; - color: #000; - background: #000; - width: 75%; -} - -div.mioboards, div.mioblog, div.miowhois { - margin: 5px auto 0; - min-width: 660px; - max-width: 924px; - border: solid 1px #9475B2; -} - -div.miochatquote { - margin: 5px auto 0; - border: solid 1px #9475B2; - display: inline-block; -} -div.miochatquote .chatquote { - text-align: left; - color: #FFF; - min-width: 500px; -} -div.miochatquote .chatquote div .dateTime { - font-size: 9px; -} -div.miochatquote .chatquote div { - padding: 1px 5px 1px 7px; -} -div.miochatquote .chatquote div:nth-child(odd) { - background: #000; -} -div.miochatquote .chatquote div:nth-child(even) { - background: #212121; -} - -div.miodonate { - margin: 5px auto 0; - min-width: 660px; - max-width: 924px; - border: solid 1px #9475B2; -} - -div.miodonate h3 { - margin: 0; -} - -div.miodonate hr { - margin-bottom: 0; -} - -div.miodonate h2 { - background: #9475B2; - border: solid 1px #9475B2; - text-align: right; - float: right; - border-bottom-left-radius: 12px; - display: inline-block; - margin: -1px 0 0; - padding: 5px; -} - -div.miodonate ul { - list-style: square outside none; -} - -div.miodonate li { - list-style: none outside none; - background: #9475B2; - width: 815px; - margin: 8px; - height: 20px; - display: list-item; - box-shadow: 0 0 10px grey; - border-radius: 3px; - font-size: 140%; - padding: 10px; -} - -div.mioucpbar { - min-width: 880px; - max-width: 1024px; -} - -div.miobottom{ - margin: 0 auto; - overflow: auto; - height: auto !important; -} - -div.miobinner { - position: relative; - left: -50%; - float: right; - clear: both; - text-align: left; -} - -h3.miotitle { - background-color: #9475B2; - color: #330066; - margin-top: 0; - text-align: left; - padding: 3px; -} - -h2.miotitle { - background-color: #9475B2; - color: #330066; - margin: 0; - text-align: center; - padding: 3px; -} - -h1.miotitle { - color: #330066; - margin: 0; - text-align: center; -} - -body.miomessage { - margin-top: 20%; - text-align: center; -} - -h1.miomessage { - color: #440077; - font-size: 36pt; -} - -.miosub { - color: #330066; - font-size: 8pt; -} - -div.mioboxcontent { - text-align: left; - margin: 0; - line-height: 130%; - overflow: auto; - width: 100%; -} - -div.mioboxcontent h4 { - text-decoration: underline; - display: inline; -} - -div.mioboards div.mioboxcontent { - padding: .25em .5em 0 20px; -} - -div.miocolumn { - float: left; - width: 25%; - display: block; -} - -a.boardlink { - text-decoration: none; - color: inherit; -} - -a.boardlink:hover,a.boardlink:active { - text-decoration: underline; -} - -div.postcontent { - text-align: left; - padding: 0 10px 0 10px; -} - -h3.title { - margin-top: 0; - background-color: #9475B2; - text-align: left; - padding: 3px; -} - -h1.title{ - margin-top: 0; - background-color: #9475B2; - text-align: left; - padding: 5px; -} - -ol,dl { - text-align: left; -} - -dl { - padding-left: 10px; -} - -dt.q { - font-weight: bold; - color: #550088; -} - -dd.a { - border-bottom: solid 1px #9475B2; - padding-right: 10px; - margin-bottom: 5px; -} - -span.permalink { - float: right; -} - -span.permalink a { - text-decoration: none; -} - -span.permalink a:hover { - text-decoration: underline; -} - -input[type="text"],input[type="password"],input[type="date"],textarea { - margin: 0 2px 0 0; - padding: 2px 4px 3px; - border: 1px solid #AAA; - outline: medium none; - font-family: arial,helvetica,sans-serif; - font-size: 10pt; -} - -select { - padding: 1px 2px 2px; - border: 1px solid #AAA; - outline: medium none; - font-family: arial,helvetica,sans-serif; - font-size: 10pt; -} - -div.copyright{ - padding-top: 5px; - font-size: 11px; - line-height: 15px; -} - -div.copyright a { - text-decoration: none; -} - -.prof_avatar{ - max-height: 200px; - max-width: 200px; - border: 1px solid #9475B2; -} - -div.prof_avatar_cont{ - text-align: right; - float: right; - width: 200px; - height: 200px; - clear: both; - margin-top: -6px; - margin-right: -11px; -} - -div.prof_options { - font-size: 10px; - text-transform: uppercase; -} - -div.prof_options a, div.prof_options a:visited { - color: #111; - text-decoration: none; -} - -div.prof_options a:hover, div.prof_options a:active { - color: #111; - text-decoration: underline; -} - -div.ucp_avatar_cont { - text-align: center; - font-weight: bold; -} - -.windowbutton-container { - float: right; - margin: -2px; -} - -.closebutton { - cursor: pointer; - height: 23px; - width: 23px; - border: 0; - background: url('../images/window-sprite.png') no-repeat scroll 0 0 transparent; -} - -.maxbutton { - cursor: pointer; - height: 23px; - width: 23px; - border: 0; - background: url('../images/window-sprite.png') no-repeat scroll 0 -23px transparent; -} - -.minbutton { - cursor: pointer; - height: 23px; - width: 23px; - border: 0; - background: url('../images/window-sprite.png') no-repeat scroll 0 -46px transparent; -} - -.donate-btn { - cursor: pointer; - height: 26px; - width: 90px; - border: 0; - background: url('../images/donate-btn.png') no-repeat scroll 0 0 transparent; -} - -div.topLeftBar { - color: #000000; - position: absolute; - left: 0; - background: #FBEEFF; - padding: 1px 9px; - border: 1px #9475B2 solid; - border-top: 0; - border-left: 0; - box-shadow: 0 0 1.5em #808080; - z-index: 997; -} - -div.topLeftBar a { - color: inherit; - text-decoration: none; -} - -div.topLeftBar a:hover { - text-decoration: underline; -} - -div.manageReportsContainer { - text-align: left; - width: 800px; -} - -div.manageReportsContainer > fieldset { - border: #9475B2 solid 1px; - margin: 5px; -} - -div.manageReportsContainer > fieldset > legend { - border: #9475B2 solid 1px; - background: #9475B2; - color: #306; - padding: 1px 5px; -} - -div.manageReportsContainer > fieldset > span > .reportText { - font-size: 10px; - line-height: 130%; -} - -table.miotable { - width:100%; -} - -table.miotablestandalone { - margin: 5px auto 0; - min-width: 880px; - max-width: 1024px; - border: solid 1px #9475B2; -} - -.ucptable tr { - width: 100%; -} - -.ucptable td { - width: 50%; -} - -.ucptable input[type="text"],.ucptable input[type="date"] { - width: 373px; -} - -.miotable tr.head { - background:#9475B2; - text-align:center; - font-weight:bold; -} - -.miotable tr.ucpmenu td { - width:25%; -} - -.miotable a { - text-decoration:none; -} - -.miotable a:hover { - text-decoration:underline; -} - -.miotable tr.online a { - color:green; -} - -.miotable tr.semionline a { - color:orange; -} - -.miotable tr.offline a { - color:red; -} - -.miotable td { - padding: 5px; -} - -.miotable tr.online { - color: green; - background: rgba(0,45,0,0.9);} - -.miotable tr.semionline { - color: orange; - background: rgba(51,24,0,0.9); -} - -.miotable tr.offline { - color: red; - background: rgba(51,0,0,0.9); -} - -.registerbutton, .loginbutton { - display: block; - background: #9475B2; - color: #330066; - padding: 10px; - font-size: 20px; - text-decoration: none; - transition: text-shadow 0.2s; -} - -.registerbutton:hover, .loginbutton:hover { - text-shadow: 0 0 8px #F1F1F1; -} - -/* Flashii Bar */ -div.flashii-bar .barAvatar { - margin-bottom: -5px; - height: 20px; - width: 20px; -} - -div.flashii-bar { - color: #000000; - position: absolute; - right: 0; - background: #FBEEFF; - padding: 1px 9px; - /*border-radius: 0px 0px 0px 8px;*/ - border: 1px #9475B2 solid; - border-top: 0; - border-right: 0; - /*box-shadow: 0 0 1px grey;*/ - box-shadow: 0 0 1.5em #808080; - z-index: 997; -} - -div.flashii-black { - background: rgba(0,0,0,0.5); - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - height: 100%; - width: 100%; - z-index: 998; -} - -div.flashii-bar a { - color: inherit; - text-decoration: none; -} - -div.flashii-bar a:hover { - text-decoration: underline; -} - -div.flashii-horizon { - background-color: transparent; - text-align: center; - position: absolute; - top: 30%; - left: 0; - width: 100%; - height: 1px; - overflow: visible; - visibility: visible; - display: block; - z-index: 999; -} - -div#flashii-login,div#flashii-register { - min-width: 333px; - max-width: 462px; - border: solid 1px #9475B2; - z-index: 999; - background: #FBEEFF; - margin: 0 auto; -} - -div#flashii-login h3,div#flashii-register h3 { - background-color: #9475B2; - color: rgb(51,0,102); - margin-top: 0; - text-align: left; - padding: 3px; -} - -div#flashii-login h3 a,div#flashii-register h3 a { - float: right; - color: inherit; - text-decoration: none; -} - -div#flashii-login table,div#flashii-register table { - margin: 0 auto; - text-align: left; -} - -div#flashii-login tr td:first-child,div#flashii-register tr td:first-child{ - background: #C9BBCC; - border: 1px #746677 solid; - color: #400070; - font-weight: bold; - padding: 0 5px; - font-size: 10pt; - width: 35% !important; -} - -div#flashii-login table tr:last-child td, div#flashii-register table tr:last-child td{ - background: transparent !important; - border: none !important; - color: inherit !important; - font-weight: normal !important; - padding: 0 0 !important; - font-size: inherit !important; - text-align: center; -} - -div#flashii-login #recaptcha_response_field,div#flashii-login input[type="text"],div#flashii-login input[type="password"],div#flashii-register #recaptcha_response_field,div#flashii-register input[type="text"],div#flashii-register input[type="password"] { - margin: 0 2px 0 0; - padding: 2px 4px 3px; - border: 1px solid #AAA; - outline: medium none; - font-family: arial,helvetica,sans-serif; - font-size: 10pt; - width: 292px; -} - -#recaptcha_widget img { - cursor: pointer; -} - -div#recaptcha_image { - margin: 0 2px 0 0; - border: 1px solid #AAA; - outline: medium none; -} - -#recaptcha_response_field { - margin-top: 4px !important; -} - -.recaptcha_custom_buttons { - font-size: smaller; -} - - -/* some more shit */ -.group-select { - margin: 0 auto; - text-align: center; - min-width: 330px !important; - max-width: 945px; -} - -.group-select a { - color: inherit; -} - -.group-select-user { - background: #9475B2; - float: left; - margin: 10px; - text-align: center; - width: 275px; - height: 175px; - padding: 10px; - transition: background 0.5s, box-shadow 0.2s; - box-shadow: inset 0 0 1.5em #000; -} - -.group-select-user:hover { - background: #8364A1; - cursor: pointer; - box-shadow: inset 0 0 2em #000; -} - -.group-select-user-avatar { - min-height: 150px; - min-width: 150px; - margin: auto auto; -} - -.group-select-user-avatar img { - max-height: 150px; - max-width: 150px; - border: 0; - padding: 0; - margin: 0; -} - - -.membersPage { - width: 100%; - padding: 10px 0; - overflow: hidden; - text-align: center; -} - -.membersPage a { - color: inherit; -} - -.membersPage .groupBox, .membersPage .userBox { - background: #9475B2; - margin: 10px; - text-align: center; - display: inline-block; - vertical-align: top; - transition: background 0.5s, box-shadow 0.2s; -} - -.membersPage .groupBox { - padding: 7px; - font-size: 15px; - min-width: 150px; - box-shadow: inset 0 0 1em #000; -} - -.membersPage .userBox { - padding: 10px; - line-height: 330%; - width: 200px; - height: 230px; - box-shadow: inset 0 0 1.5em #000; -} - -.membersPage .groupBox:hover, .membersPage .userBox:hover { - background: #8364A1; - cursor: pointer; -} - -.membersPage .groupBox:hover { - box-shadow: inset 0 0 1em #000; -} - -.membersPage .userBox:hover { - box-shadow: inset 0 0 1.5em #000; -} - -.membersPage .userBox img { - width: 200px; - height: 200px; - display: block; - margin: 0 auto; -} - -.membersPage .userBox .userBoxUserName { - font-weight: 700; -} - -.news-post-time { - text-align: right; - font-size: .8em; - margin-right: 10px; - margin-bottom: 7px; -} -.news-poster { - float: right; - text-align: right; - margin-top: -3px; - margin-left: 5px; -} -.news-poster img { - max-width: 120px; - max-height: 120px; - border: 1px solid #9475B2; -} -.news-poster h2 { - line-height: 11px; - margin: -5px 0 0; - font-weight: 100; - background: #9475B2; - border-bottom-left-radius: 10px; - font-size: 1.5em; - padding: 5px !important; - height: 15px; -} -.news-comments-container { - margin: 5px auto 0; -} diff --git a/public/content/data/mio/css/mionetics.css b/public/content/data/mio/css/mionetics.css deleted file mode 100644 index 09c16f3..0000000 --- a/public/content/data/mio/css/mionetics.css +++ /dev/null @@ -1,776 +0,0 @@ -/* Flashii.net Style Codename "Mio" Cybernetics Mod */ -@charset "utf-8"; - -html { - color: #FFF; - font: 12px/20px Georgia, "Times New Roman", Times, serif; -} - -body { - margin: 0; - padding: 0; - font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif; - background: url('//cdn.flashii.net/img/mionetics/body.png') #242424; - text-align: center; -} - -a { - color: #B62723; - text-decoration: none; -} - -a:active, -a:visited { - color: #B62723; - text-decoration: none; -} - -a:hover { - color: #F0E80A; - text-decoration: underline; -} - -img.logo { - height: 125px; - width: 400px; - border: 0; - background: url('//cdn.flashii.net/img/mionetics/cyberneticlogo.png') no-repeat scroll left top transparent; - background-size: cover; -} - -.hidden { - display: none; - visibility: hidden; -} - -div.navbar { - background: url('//cdn.flashii.net/img/mionetics/cathead.png') repeat-x scroll left top #2C2C2C; - border-width: 1px; - border-style: solid; - border-color: #3C3C3C transparent #131313 transparent; - margin: 5px auto 0; -} - -div.navbar a { - text-decoration: none; -} - -hr { - color: #404040; - background: #404040; - height: 1px; - border: 0; -} - -div.navbar ul { - display: block; - margin: 0 auto; - clear: both; - text-align: center; -} - -div.navbar li { - display: inline-block; -} - -li.notcurrent { - padding: 2px 1em; -} - -li.current { - padding: 2px 1em 4px; - margin-left: -1px; -} - -div.pagecontent, div.profile { - margin: 5px auto 0; - min-width: 880px; - max-width: 1024px; - border-width: 1px; - border-style: solid; - border-color: #3C3C3C #121212 #131313 #404040; - background: url('//cdn.flashii.net/img/mionetics/cell.png') repeat-x scroll left top #313131; -} - -div.profile { - min-height: 246px; -} - -div.profile_cont { - text-align: left; - padding: 0 20px; -} - -div.profile_cont hr { - border: 0 solid #000; - height: 1px; - color: #000; - background: #000; - width: 75%; -} - -div.mioboards, div.mioblog, div.miowhois { - margin: 5px auto 0; - min-width: 660px; - max-width: 924px; - border-width: 1px; - border-style: solid; - border-color: #3C3C3C #121212 #131313 #404040; - background: url('//cdn.flashii.net/img/mionetics/cell.png') repeat-x scroll left top #313131; -} - -div.miodonate { - margin: 5px auto 0; - min-width: 660px; - max-width: 924px; - border-width: 1px; - border-style: solid; - border-color: #3C3C3C #121212 #131313 #404040; -} - -div.miodonate h3 { - margin: 0; -} - -div.miodonate hr { - margin-bottom: 0; -} - -div.miodonate h2 { - background: url('//cdn.flashii.net/img/mionetics/cell.png') repeat-x scroll left top #313131; - border-width: 1px; - border-style: solid; - border-color: #3C3C3C transparent #131313 #404040; - text-align: right; - float: right; - border-bottom-left-radius: 12px; - display: inline-block; - margin: -1px 0 0; - padding: 5px; -} - -div.miodonate ul { - list-style: square outside none; -} - -div.miodonate li { - list-style: none outside none; - background: url("//cdn.flashii.net/img/mionetics/buttons.png") transparent; - width: 815px; - margin: 8px; - height: 20px; - display: list-item; - box-shadow: 0 0 10px grey; - border-radius: 3px; - font-size: 140%; - padding: 10px; -} - -div.mioucpbar { - min-width: 880px; - max-width: 1024px; -} - -div.miobottom{ - margin: 0 auto; - overflow: auto; - height: auto !important; -} - -div.miobinner { - position: relative; - left: -50%; - float: right; - clear: both; - text-align: left; -} - -h3.miotitle { - background: url('//cdn.flashii.net/img/mionetics/buttons.png'); - margin-top: 0; - text-align: left; - padding: 3px; - text-shadow: 1px 1px 2px #000; -} - -h2.miotitle { - background: url('//cdn.flashii.net/img/mionetics/buttons.png'); - margin: 0; - text-align: center; - padding: 3px; - text-shadow: 0 0 2px #444; -} - -h1.miotitle { - color: #330066; - margin: 0; - text-align: center; -} - -body.miomessage { - margin-top: 20%; - text-align: center; -} - -h1.miomessage { - color: #440077; - font-size: 36pt; -} - -.miosub { - color: #330066; - font-size: 8pt; -} - -div.content { - background: url('//cdn.flashii.net/img/mionetics/cell.png') repeat-x scroll left top #313131; -} - -div.mioboxcontent { - text-align: left; - margin: 0; - line-height: 130%; - overflow: auto; - width: 100%; -} - -div.mioboxcontent h4 { - text-decoration: underline; - display: inline; -} - -div.mioboards div.mioboxcontent { - padding: .25em .5em 0 20px; -} - -div.miocolumn { - float: left; - width: 25%; - display: block; -} - -a.boardlink { - text-decoration: none; - color: inherit; -} - -a.boardlink:hover,a.boardlink:active { - text-decoration: underline; -} - -div.postcontent { - text-align: left; - padding: 0 10px 0 10px; -} - -h3.title { - margin-top: 0; - background: url("//cdn.flashii.net/img/mionetics/buttons.png") transparent; - text-align: left; - padding: 3px; -} - -h1.title{ - margin-top: 0; - background-color: #9475B2; - text-align: left; - padding: 5px; -} - -ol,dl { - text-align: left; -} - -dl { - padding-left: 10px; -} - -dt.q { - font-weight: bold; - color: #550088; -} - -dd.a { - border-bottom: solid 1px #9475B2; - padding-right: 10px; - margin-bottom: 5px; -} - -span.permalink { - float: right; -} - -span.permalink a { - text-decoration: none; -} - -span.permalink a:hover { - text-decoration: underline; -} - -input[type="text"],input[type="password"],input[type="date"],textarea{ - margin: 0 2px 0 0; - padding: 2px 4px 3px; - border: 1px solid #AAA; - outline: medium none; - font-family: arial,helvetica,sans-serif; - font-size: 10pt; -} - -select{ - padding: 1px 2px 2px; - border: 1px solid #AAA; - outline: medium none; - font-family: arial,helvetica,sans-serif; - font-size: 10pt; -} - -div.copyright{ - padding-top: 5px; - font-size: 11px; - line-height: 15px; - color: #888; -} - -div.copyright a { - color: #AAA; -} - -.prof_avatar{ - max-height: 200px; - max-width: 200px; - border-width: 1px; - border-style: solid; - border-color: #3C3C3C #121212 #131313 #404040; -} - -div.prof_avatar_cont{ - text-align: right; - float: right; - width: 200px; - height: 200px; - clear: both; - margin-top: -6px; - margin-right: -11px; -} - -div.prof_options { - font-size: 10px; - text-transform: uppercase; -} - -div.prof_options a, div.prof_options a:visited { - color: #111; - text-decoration: none; -} - -div.prof_options a:hover, div.prof_options a:active { - color: #111; - text-decoration: underline; -} - -div.ucp_avatar_cont { - text-align: center; - font-weight: bold; -} - -.windowbutton-container { - float: right; - margin: -2px; -} - -.closebutton { - cursor: pointer; - height: 23px; - width: 23px; - border: 0; - background: url('//cdn.flashii.net/img/mionetics/window-sprite.png') no-repeat scroll 0 0 transparent; -} - -.maxbutton { - cursor: pointer; - height: 23px; - width: 23px; - border: 0; - background: url('//cdn.flashii.net/img/mionetics/window-sprite.png') no-repeat scroll 0 -23px transparent; -} - -.minbutton { - cursor: pointer; - height: 23px; - width: 23px; - border: 0; - background: url('//cdn.flashii.net/img/mionetics/window-sprite.png') no-repeat scroll 0 -46px transparent; -} - -.donate-btn { - cursor: pointer; - height: 26px; - width: 90px; - border: 0; - background: url('//cdn.flashii.net/img/mionetics/donate-btn.png') no-repeat scroll 0 0 transparent; -} - -div.topLeftBar { - color: #000000; - position: absolute; - left: 0; - background: #FBEEFF; - padding: 1px 9px; - border: 1px #9475B2 solid; - border-top: 0; - border-left: 0; - box-shadow: 0 0 1.5em #808080; - z-index: 997; -} - -div.topLeftBar a { - color: inherit; - text-decoration: none; -} - -div.topLeftBar a:hover { - text-decoration: underline; -} - -div.manageReportsContainer { - text-align: left; - width: 800px; -} - -div.manageReportsContainer > fieldset { - border: #9475B2 solid 1px; - margin: 5px; -} - -div.manageReportsContainer > fieldset > legend { - border: #9475B2 solid 1px; - background: #9475B2; - color: #306; - padding: 1px 5px; -} - -div.manageReportsContainer > fieldset > span > .reportText { - font-size: 10px; - line-height: 130%; -} - -table.miotable { - width:100%; -} - -table.miotablestandalone { - margin: 5px auto 0; - min-width: 880px; - max-width: 1024px; - border: solid 1px #9475B2; -} - -.ucptable tr { - width: 100%; -} - -.ucptable td { - width: 50%; -} - -.ucptable input[type="text"],.ucptable input[type="date"] { - width: 373px; -} - -.miotable tr.head { - background:#9475B2; - text-align:center; - font-weight:bold; -} - -.miotable tr.ucpmenu td { - width:25%; -} - -.miotable a { - text-decoration:none; -} - -.miotable a:hover { - text-decoration:underline; -} - -.miotable tr.online a { - color:green; -} - -.miotable tr.semionline a { - color:orange; -} - -.miotable tr.offline a { - color:red; -} - -.miotable td { - padding: 5px; -} - -.miotable tr.online { - color: green; - background: rgba(0,45,0,0.9);} - -.miotable tr.semionline { - color: orange; - background: rgba(51,24,0,0.9); -} - -.miotable tr.offline { - color: red; - background: rgba(51,0,0,0.9); -} - -.registerbutton, .loginbutton { - display: block; - background: #9475B2; - color: #330066; - padding: 10px; - font-size: 20px; - text-decoration: none; - transition: text-shadow 0.2s; -} - -.registerbutton:hover, .loginbutton:hover { - text-shadow: 0 0 8px #F1F1F1; -} - -/* Flashii Bar */ -div.flashii-bar .barAvatar { - margin-bottom: -5px; - max-height: 20px; - max-width: 20px; -} - -div.flashii-bar { - color: #FFF; - position: absolute; - right: 0; - background: url('//cdn.flashii.net/img/mionetics/cathead.png') repeat-x scroll left top #2C2C2C; - padding: 1px 9px; - box-shadow: 0 0 .5em #808080; - z-index: 997; - border: 0 solid #3C3C3C; - border-right-color: #121212; - border-bottom: 1px #131313; - border-left: 1px #404040; -} - -div.flashii-black { - background: rgba(0,0,0,0.5); - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - height: 100%; - width: 100%; - z-index: 998; -} - -div.flashii-bar a { - color: inherit; - text-decoration: none; -} - -div.flashii-bar a:hover { - text-decoration: underline; -} - -div.flashii-horizon { - background-color: transparent; - text-align: center; - position: absolute; - top: 30%; - left: 0; - width: 100%; - height: 1px; - overflow: visible; - visibility: visible; - display: block; - z-index: 999; -} - -div#flashii-login,div#flashii-register { - min-width: 333px; - max-width: 462px; - border: solid 1px #9475B2; - z-index: 999; - background: #FBEEFF; - margin: 0 auto; -} - -div#flashii-login h3,div#flashii-register h3 { - background-color: #9475B2; - color: rgb(51,0,102); - margin-top: 0; - text-align: left; - padding: 3px; -} - -div#flashii-login h3 a,div#flashii-register h3 a { - float: right; - color: inherit; - text-decoration: none; -} - -div#flashii-login table,div#flashii-register table { - margin: 0 auto; - text-align: left; -} - -div#flashii-login tr td:first-child,div#flashii-register tr td:first-child{ - background: #C9BBCC; - border: 1px #746677 solid; - color: #400070; - font-weight: bold; - padding: 0 5px; - font-size: 10pt; - width: 35% !important; -} - -div#flashii-login table tr:last-child td, div#flashii-register table tr:last-child td{ - background: transparent !important; - border: none !important; - color: inherit !important; - font-weight: normal !important; - padding: 0 0 !important; - font-size: inherit !important; - text-align: center; -} - -div#flashii-login #recaptcha_response_field,div#flashii-login input[type="text"],div#flashii-login input[type="password"],div#flashii-register #recaptcha_response_field,div#flashii-register input[type="text"],div#flashii-register input[type="password"] { - margin: 0 2px 0 0; - padding: 2px 4px 3px; - border: 1px solid #AAA; - outline: medium none; - font-family: arial,helvetica,sans-serif; - font-size: 10pt; - width: 292px; -} - -#recaptcha_widget img { - cursor: pointer; -} - -div#recaptcha_image { - margin: 0 2px 0 0; - border: 1px solid #AAA; - outline: medium none; -} - -#recaptcha_response_field { - margin-top: 4px !important; -} - -.recaptcha_custom_buttons { - font-size: smaller; -} - - -/* some more shit */ -.group-select { - margin: 0 auto; - text-align: center; - min-width: 330px !important; - max-width: 945px; -} - -.group-select a { - color: inherit; -} - -.group-select-user { - background: #9475B2; - float: left; - margin: 10px; - text-align: center; - width: 275px; - height: 175px; - padding: 10px; - transition: background 0.5s, box-shadow 0.2s; - box-shadow: inset 0 0 1.5em #000; -} - -.group-select-user:hover { - background: #8364A1; - cursor: pointer; - box-shadow: inset 0 0 2em #000; -} - -.group-select-user-avatar { - min-height: 150px; - min-width: 150px; - margin: auto auto; -} - -.group-select-user-avatar img { - max-height: 150px; - max-width: 150px; - border: 0; - padding: 0; - margin: 0; -} - - -.membersPage { - width: 100%; - padding: 10px 0; - overflow: hidden; - text-align: center; -} - -.membersPage a { - color: inherit; -} - -.membersPage .groupBox, .membersPage .userBox { - margin: 10px; - text-align: center; - display: inline-block; - vertical-align: top; - transition: background 0.5s, box-shadow 0.2s; -} - -.membersPage .groupBox { - padding: 7px; - font-size: 15px; - min-width: 150px; - box-shadow: inset 0 0 1em #000; -} - -.membersPage .userBox { - padding: 10px; - line-height: 330%; - width: 200px; - height: 230px; - box-shadow: inset 0 0 1.5em #000; -} - -.membersPage .groupBox:hover, .membersPage .userBox:hover { - cursor: pointer; -} - -.membersPage .groupBox:hover { - box-shadow: inset 0 0 1em #000; -} - -.membersPage .userBox:hover { - box-shadow: inset 0 0 1.5em #000; -} - -.membersPage .userBox img { - width: 200px; - height: 200px; - display: block; - margin: 0 auto; -} - -.membersPage .userBox .userBoxUserName { - font-weight: 700; -} diff --git a/public/content/data/mio/images/banned-av.png b/public/content/data/mio/images/banned-av.png deleted file mode 100644 index b7da007..0000000 Binary files a/public/content/data/mio/images/banned-av.png and /dev/null differ diff --git a/public/content/data/mio/images/betterteku.png b/public/content/data/mio/images/betterteku.png deleted file mode 100644 index 74c4060..0000000 Binary files a/public/content/data/mio/images/betterteku.png and /dev/null differ diff --git a/public/content/data/mio/images/christmas-logo.png b/public/content/data/mio/images/christmas-logo.png deleted file mode 100644 index 762a0fb..0000000 Binary files a/public/content/data/mio/images/christmas-logo.png and /dev/null differ diff --git a/public/content/data/mio/images/deactivated-av.png b/public/content/data/mio/images/deactivated-av.png deleted file mode 100644 index 1b52de4..0000000 Binary files a/public/content/data/mio/images/deactivated-av.png and /dev/null differ diff --git a/public/content/data/mio/images/dicksareformyfriends-mio.png b/public/content/data/mio/images/dicksareformyfriends-mio.png deleted file mode 100644 index a5bdca3..0000000 Binary files a/public/content/data/mio/images/dicksareformyfriends-mio.png and /dev/null differ diff --git a/public/content/data/mio/images/donate-btn.png b/public/content/data/mio/images/donate-btn.png deleted file mode 100644 index 8b6ed17..0000000 Binary files a/public/content/data/mio/images/donate-btn.png and /dev/null differ diff --git a/public/content/data/mio/images/fade-purple.png b/public/content/data/mio/images/fade-purple.png deleted file mode 100644 index 46f6669..0000000 Binary files a/public/content/data/mio/images/fade-purple.png and /dev/null differ diff --git a/public/content/data/mio/images/fade-red.png b/public/content/data/mio/images/fade-red.png deleted file mode 100644 index b01ef64..0000000 Binary files a/public/content/data/mio/images/fade-red.png and /dev/null differ diff --git a/public/content/data/mio/images/feedback-logo-old.png b/public/content/data/mio/images/feedback-logo-old.png deleted file mode 100644 index 2f386f8..0000000 Binary files a/public/content/data/mio/images/feedback-logo-old.png and /dev/null differ diff --git a/public/content/data/mio/images/intentionally-shitty.png b/public/content/data/mio/images/intentionally-shitty.png deleted file mode 100644 index 9161547..0000000 Binary files a/public/content/data/mio/images/intentionally-shitty.png and /dev/null differ diff --git a/public/content/data/mio/images/logo-org-1.png b/public/content/data/mio/images/logo-org-1.png deleted file mode 100644 index f19b369..0000000 Binary files a/public/content/data/mio/images/logo-org-1.png and /dev/null differ diff --git a/public/content/data/mio/images/logo.png b/public/content/data/mio/images/logo.png deleted file mode 100644 index b1c4a7b..0000000 Binary files a/public/content/data/mio/images/logo.png and /dev/null differ diff --git a/public/content/data/mio/images/logousto.png b/public/content/data/mio/images/logousto.png deleted file mode 100644 index ccd8aaa..0000000 Binary files a/public/content/data/mio/images/logousto.png and /dev/null differ diff --git a/public/content/data/mio/images/mionetics/body.png b/public/content/data/mio/images/mionetics/body.png deleted file mode 100644 index d22dba0..0000000 Binary files a/public/content/data/mio/images/mionetics/body.png and /dev/null differ diff --git a/public/content/data/mio/images/mionetics/buttons.png b/public/content/data/mio/images/mionetics/buttons.png deleted file mode 100644 index 4f243fe..0000000 Binary files a/public/content/data/mio/images/mionetics/buttons.png and /dev/null differ diff --git a/public/content/data/mio/images/mionetics/cathead.png b/public/content/data/mio/images/mionetics/cathead.png deleted file mode 100644 index c2ee3c7..0000000 Binary files a/public/content/data/mio/images/mionetics/cathead.png and /dev/null differ diff --git a/public/content/data/mio/images/mionetics/cell.png b/public/content/data/mio/images/mionetics/cell.png deleted file mode 100644 index 415a9f9..0000000 Binary files a/public/content/data/mio/images/mionetics/cell.png and /dev/null differ diff --git a/public/content/data/mio/images/mionetics/cyberneticlogo.png b/public/content/data/mio/images/mionetics/cyberneticlogo.png deleted file mode 100644 index 65f4df8..0000000 Binary files a/public/content/data/mio/images/mionetics/cyberneticlogo.png and /dev/null differ diff --git a/public/content/data/mio/images/mionetics/donate-btn.png b/public/content/data/mio/images/mionetics/donate-btn.png deleted file mode 100644 index 4f55a6f..0000000 Binary files a/public/content/data/mio/images/mionetics/donate-btn.png and /dev/null differ diff --git a/public/content/data/mio/images/mionetics/window-sprite.png b/public/content/data/mio/images/mionetics/window-sprite.png deleted file mode 100644 index f2e3c92..0000000 Binary files a/public/content/data/mio/images/mionetics/window-sprite.png and /dev/null differ diff --git a/public/content/data/mio/images/no-av.png b/public/content/data/mio/images/no-av.png deleted file mode 100644 index f2e725d..0000000 Binary files a/public/content/data/mio/images/no-av.png and /dev/null differ diff --git a/public/content/data/mio/images/window-sprite.png b/public/content/data/mio/images/window-sprite.png deleted file mode 100644 index d06f7da..0000000 Binary files a/public/content/data/mio/images/window-sprite.png and /dev/null differ diff --git a/public/content/data/mio/images/xp_buttons.png b/public/content/data/mio/images/xp_buttons.png deleted file mode 100644 index 51111c8..0000000 Binary files a/public/content/data/mio/images/xp_buttons.png and /dev/null differ diff --git a/public/content/data/mio/images/xpdesktop.png b/public/content/data/mio/images/xpdesktop.png deleted file mode 100644 index 546684a..0000000 Binary files a/public/content/data/mio/images/xpdesktop.png and /dev/null differ diff --git a/public/content/data/mio/images/xplogo.png b/public/content/data/mio/images/xplogo.png deleted file mode 100644 index 8e52447..0000000 Binary files a/public/content/data/mio/images/xplogo.png and /dev/null differ diff --git a/public/content/data/mio/images/yotsubalogo.png b/public/content/data/mio/images/yotsubalogo.png deleted file mode 100644 index 12994df..0000000 Binary files a/public/content/data/mio/images/yotsubalogo.png and /dev/null differ diff --git a/public/content/data/mio/images/zquest-anniv.png b/public/content/data/mio/images/zquest-anniv.png deleted file mode 100644 index fdcacf1..0000000 Binary files a/public/content/data/mio/images/zquest-anniv.png and /dev/null differ diff --git a/public/content/data/misaki/css/error.css b/public/content/data/misaki/css/error.css deleted file mode 100644 index 284eddb..0000000 --- a/public/content/data/misaki/css/error.css +++ /dev/null @@ -1,103 +0,0 @@ -html, -body { - min-height: 100%; - width: 90; -} - -html { - background: url('/images/satori-error.png') top right no-repeat #FFF; - font-family: 'verdana', sans-serif; - font-size: .8em; -} - -body { - margin: 0 2em; -} - -#wrap { - max-width: 34em; -} - -h1, -h2, -h3, -p { - margin: 0; - padding: 0; - font-size: 1em; - font-weight: normal; -} - -h1 { - font-size: 1.5em; - margin: 1.33em 0; -} - -h1 img { - margin: 0 .5em -.75em 0; -} - -p { - padding: 0; - margin: 2em 0; - line-height: 1.33em; -} - -hr { - margin: 1.9em 0; - background: #BBB; - border: none; -} - -ul { - padding: .75em 0 0 0; -} - -li { - margin: 0 0 .8em 3.46em; - line-height: 1.32em; -} - -a { - color: red; -} - -img+a:before { - content: " "; -} - -h3 { - margin: 2.5em 0; -} - -li:nth-child(3) img { - margin: -0.2em 0; -} - -li:nth-child(4) img { - margin: -0.5em 0; -} - -table { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - opacity: 0; - display: none; -} - -table, -tr, -td { - background: rgba(0, 0, 0, .2); - height: 100%; - width: 100%; - text-align: center; -} - -table img { - border-radius: 32px; - box-shadow: 0 4px 32px #888; -} diff --git a/public/content/data/misaki/css/markdown.css b/public/content/data/misaki/css/markdown.css deleted file mode 100644 index 3c6f138..0000000 --- a/public/content/data/misaki/css/markdown.css +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Markdown Elements - */ -@charset "utf-8"; - -.markdown { - font: 12px/1.4 "Aller", sans-serif; - word-wrap: break-word; - color: #DDD; -} - -.markdown h1, -.markdown h2, -.markdown h3, -.markdown h4, -.markdown h5, -.markdown h6 { - border-bottom: 1px solid; - padding-bottom: 5px; - font-weight: 700; - font-family: "Exo2-0-Italic", sans-serif; -} - -.markdown p, -.markdown blockquote, -.markdown ul, -.markdown ol, -.markdown dl, -.markdown table, -.markdown pre { - margin-top: 0; - margin-bottom: 16px; -} - -.markdown hr { - border: 0; - height: 1px; - color: #000; - background: #000; - margin: 0; -} - -.markdown table { - display: block; - width: 100%; - overflow: auto; - word-break: keep-all; - border-collapse: collapse; - border-spacing: 0; -} - -.markdown table tr { - border-spacing: 0; - border: 1px solid rgba(148, 117, 178, .6); -} - -.markdown table th, -.markdown table td { - padding: 6px 13px; - border: 1px solid rgba(148, 117, 178, .6); -} - -.markdown table tr:nth-child(even) { - background: rgba(148, 117, 178, .2); -} - -.markdown hr { - background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAEAQMAAAHgzeyWAAAABlBMVEX///////9VfPVsAAAAAnRSTlMAM8lDrC4AAAAYSURBVAjXY2BgaGBgYHBgSGA4wGDB8AAAELgC+QawOaIAAAAASUVORK5CYII=') repeat-x scroll 0 0 transparent; - border: 0 none; - color: #CCC; - height: 4px; - padding: 0; - margin: 15px 0; -} - -.markdown blockquote { - border-left: 4px solid rgba(148, 117, 178, .6); - padding: 0 15px; - color: #AAA; -} - -.markdown blockquote > blockquote { - margin-left: 0; -} - -.markdown blockquote > :last-child { - margin-bottom: 0; -} - -.markdown pre { - word-wrap: normal; -} - -.markdown .highlight pre, -.markdown pre { - background: rgba(148, 117, 178, .2); - border: 1px solid rgba(148, 117, 178, .6); - font-size: 13px; - line-height: 19px; - overflow: auto; - padding: 6px 10px; - color: #FFF; -} - -.markdown ul, -.markdown ol { - margin-left: 40px; -} diff --git a/public/content/data/misaki/css/misaki.css b/public/content/data/misaki/css/misaki.css deleted file mode 100644 index f93bd9e..0000000 --- a/public/content/data/misaki/css/misaki.css +++ /dev/null @@ -1,957 +0,0 @@ -/* - * Sakura Misaki Style - * By Flashwave - */ - -/* - * Define charset - */ -@charset "utf-8"; - -/* - * Import fonts - */ -@import url('/content/fonts/font-awesome/font.css'); /* Font Awesome */ -@import url('/content/fonts/exo2-0-italic/font.css'); /* Exo 2.0 Italic */ -@import url('/content/fonts/exo2-0-light/font.css'); /* Exo 2.0 Light */ -@import url('/content/fonts/exo2-0-lightitalic/font.css'); /* Exo 2.0 Light Italic */ - -/* - * Keyframe definitions - */ -@keyframes spin { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } -} - -/* - * Reset margin and padding - */ -* { - margin: 0; - padding: 0; -} - -/* - * Global Elements - */ -html, -body { - width: 100%; - height: 100%; -} - -body { - background: linear-gradient(0deg, #4D3E5A, #9475B2) no-repeat scroll left top #4D3E5A; - background-size: cover; - color: #FFF; - font: 400 12px/20px "Exo2-0-Light", sans-serif; -} - -#container { - min-height: 100%; - width: 100%; - position: relative; - background: url('../images/grid.png'); -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: "Exo2-0-LightItalic", sans-serif; - font-weight: 100; - color: #ab95bf; - text-shadow: 1px 1px 2px rgba(0, 0, 0, .75); -} - -.box h1, -.box h2, -.box h3, -.box h4, -.box h5, -.box h6 { - color: #fff; -} - -a.clean, -a.underline { - color: inherit !important; - text-decoration: none !important; -} - -a.underline:hover { - text-decoration: underline !important; -} - -a { - color: #66A; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -a:active { - color: #A66; -} - -/* - * Attribute classes - */ -.hidden { - display: none; - visibility: hidden; -} - -.clear { - clear: both; - float: none !important; -} - -.floatLeft { - float: left; -} - -.floatRight { - float: right; -} - -.leftAlign { - text-align: left; -} - -.centreAlign { - text-align: center; -} - -.rightAlign { - text-align: right; -} - -.username { - font-weight: bold; -} - -/* - * Header Fade - */ -.header-fade { - height: 500px; - width: 100%; - background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .35) 50%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .53) 70%, rgba(0, 0, 0, .44) 77%, rgba(0, 0, 0, .4) 80%, rgba(0, 0, 0, 0) 100%) transparent; - z-index: -1; - position: absolute; - top: 0; -} - -/* - * Logo - */ -#banner { - height: 120px; - width: 1024px; - margin: 0 auto 5px; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); -} - -#banner > a { - display: block; - width: 100%; - height: 100%; -} - -/* - * Site footer - */ -#footer { - height: 70px; - width: 100%; - background: linear-gradient(0deg, rgba(0, 0, 0, .6) 70%, rgba(0, 0, 0, .7) 80%, rgba(0, 0, 0, .4) 80%, rgba(0, 0, 0, 0) 90%) transparent; - padding-top: 20px; - position: absolute; - bottom: 0; - font-family: "Exo2-0-LightItalic", sans-serif; -} - -#footer > .inner { - max-width: 976px; - margin: 0 auto; - padding: 0 24px; - display: flex; - align-items: center; - justify-content: space-between; -} - -#footer > .inner > .ft-logo { - background: url('../images/image-logo-white.svg') no-repeat scroll center center / cover; - height: 66px; - width: 66px; - opacity: .5; -} - -#footer > .inner > .ft-text { - margin-left: 10px; - text-align: right; -} - -#footer > .inner a { - color: inherit; -} - -/* - * Wrapper - */ -#wrapper { - padding-top: 10px; - padding-bottom: 100px; -} - -#wrapper.navFloat { - padding-top: 37px; -} - -#content { - position: relative; - max-width: 1024px; - margin: 0 auto; - z-index: 4; -} - -.platform { - background: #231C29; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); - padding: 2px; - border: 1px solid #67517b; -} - -.platform:not(:last-child) { - margin-bottom: 5px; -} - -.box { - margin: 10px; - padding: 5px; - background: #3A2E44; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); -} - -/* - * Header navigation - */ -#navigation { - margin: 0 auto; - position: relative; - background: linear-gradient(0deg, transparent, #453851 50%, #342740) #231C29; - font-family: "Exo2-0-LightItalic", sans-serif; - height: 30px; - font-size: 1.5em; - line-height: 30px; - letter-spacing: 0; - text-shadow: 1px 1px 3px #111; - margin-bottom: 5px; - max-width: 1022px; - width: 100%; - border: 1px solid rgba(148, 117, 178, .6); - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); - display: flex; - justify-content: space-between; - z-index: 999; - transition: background-color .2s, box-shadow .2s, height .2s, line-height .2s; -} - -#navigation.floating { - position: fixed; - top: 0; - right: 0; - left: 0; - border: 0; - box-shadow: 0 0 0 transparent; - background-color: transparent; - height: 25px; - line-height: 25px; - max-width: 1024px; -} - -#navigation > ul { - list-style: none; - display: flex; - flex-grow: 0; - flex-shrink: 0; -} - -#navigation > ul > li { - max-height: 30px; - transition: .2s; -} - -#navigation > ul > .site-menu { - text-align: left; -} - -#navigation > ul > .user-menu { - text-align: right; -} - -#navigation.floating > ul > li { - max-height: 25px; -} - -#navigation > ul > li > a { - height: 30px; - line-height: 30px; - min-width: 30px; - display: block; - text-align: center; - color: inherit; - text-decoration: none; - transition: .2s; -} - -#navigation.floating > ul > li > a { - height: 25px; - min-width: 25px; - line-height: 25px; -} - -#navigation > ul > li.logo > a { - background: transparent url('../images/image-logo-white.svg') no-repeat scroll center center / cover; -} - -#navigation > ul > li > a:hover { - background-color: rgba(69, 56, 81, .2); - box-shadow: inset 0 0 2px rgba(0, 0, 0, .75); -} - -#navigation .nav-avatar { - height: 30px; - width: 30px; - background: url('/pixel.png') no-repeat scroll left center / cover transparent; - transition: .2s; - position: relative; - z-index: 2; -} - -#navigation.floating .nav-avatar { - height: 25px; - width: 25px; -} - -#navigation .nav-usermenu { - position: relative; - z-index: 2; -} - -#navigation .nav-usermenu > a { - display: flex !important; - text-align: right !important; - justify-content: space-around; - position: relative; - z-index: 2; - background: transparent !important; - box-shadow: 0 0 0 transparent !important; - padding-right: 5px; -} - -#navigation .nav-usermenu .nav-user-dropdown:after { - font-family: FontAwesome; - content: " \f107"; - line-height: 1em; -} - -#navigation .nav-usermenu:hover .nav-user-dropdown:after { - font-family: FontAwesome; - content: " \f106"; -} - -#navigation .nav-usermenu > a > div { - display: inline-block; -} - -#navigation .nav-usermenu > a > div > .nav-username { - font-size: .8em; - line-height: 1.1em; -} - -#navigation .nav-usermenu > a > div > .nav-userstats { - font-size: .6em; - line-height: 1.1em; -} - -#navigation > ul > li > ul { - display: none; -} - -#navigation > ul > li:hover > ul { - display: block; - background: rgba(69, 56, 81, .8); - position: absolute; - top: 0; - right: 0; - list-style: none; - padding: 35px 4px 5px; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); - font-size: .8em; - line-height: 1.5em; - transition: .2s; -} - -#navigation.floating > ul > li:hover > ul { - padding-top: 30px; -} - -#navigation > ul > li > ul > li > a { - color: inherit; - text-decoration: none; - display: block; - transition: .2s; - padding: 2px 7px; - z-index: 1; -} - -#navigation > ul > li > ul > li > a:hover { - background: rgba(0, 0, 0, .2); -} - -#navigation > ul > li > ul > li > a:active { - background: rgba(0, 0, 0, .3); -} - -#navigation .nav-usermenu ul { - right: -30px !important; - text-align: right; - min-width: 150px; -} - -#navigation.floating .nav-usermenu ul { - right: -25px !important; -} - -/* - * Profiles - */ -.userNotFound { - margin: 10px 14px; - font-family: "Exo2-0-LightItalic", sans-serif; - font-size: 1.5em; - line-height: 1.3em; -} - -.userNotFound > ul { - padding-left: 18px; - list-style: square; -} - -.profile { - text-shadow: 1px 1px 2px rgba(0, 0, 0, .75); - font-family: "Exo2-0-LightItalic", sans-serif; - display: flex; - flex-direction: column; - align-content: stretch; - width: 100%; -} - -.profile .profileContainer { - display: flex; -} - -.profile .profilePlatform { - background: #3A2E44; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); - margin: 0 0 10px 10px; -} - -.profile .profilePlatform > .inner { - padding: 5px 7px; - display: block; -} - -.profile .profilePlatform > a.inner { - cursor: pointer; - text-decoration: none; - color: inherit; -} - -#profileHeader { - height: 250px; - width: 100%; - display: flex; - align-items: flex-end; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); - background: no-repeat center center / cover transparent; -} - -#profileHeader.floating { - position: fixed; - top: 0; - padding-top: 30px; - max-width: 1024px; - height: 95px; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); -} - -#userAvatar { - font-size: 0; - background: transparent no-repeat scroll left center / cover; - height: 200px; - width: 200px; - border-radius: 2px; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); - margin: 10px; - margin-bottom: -10px; - flex-shrink: 0; - transition: .2s; -} - -#profileHeader.floating #userAvatar { - height: 100px; - width: 100px; - margin: 5px 5px -5px; -} - -#profileHeader > .userData { - display: flex; - align-items: center; - position: relative; - top: -55px; - width: 100%; -} - -#profileHeader.floating > .userData { - position: initial; - top: 0; - height: 100%; - font-size: .8em; - line-height: 1.5em; -} - -#profileHeader > .userData > .headerLeft { - flex-grow: 1; -} - -#profileHeader > .userData > .headerLeft > .profileUsername { - font-size: 3em; - line-height: .8em; -} - -#profileHeader > .userData > .headerLeft > .profileUserTitle { - padding-left: 12px; -} - -#profileHeader > .userData > .headerRight { - text-align: right; - padding-right: 12px; -} - -#profileContent { - margin: 10px 10px 0 0; -} - -#profileContent.headerFloating { - margin-top: 264px; -} - -#profileContent > .userDataBar { - width: 210px; - margin-top: 10px; - flex-shrink: 0; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies, -#profileContent > .userDataBar > .userActions > .inner > .actions { - list-style: none; - font-size: 2.5em; - line-height: 1.2em; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > li:before, -#profileContent > .userDataBar > .userActions > .inner > .actions > li > a:before { - font-family: "FontAwesome"; - width: 36px; - padding-right: 3px; - text-align: center; - display: inline-block; - color: #FFF; - text-shadow: 0 0 3px #fcfcfc; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > li > a { - display: block; - color: inherit; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .owner { - color: #824ca0; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .owner:before { - content: "\f0ad"; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .tenshi { - color: #ee9400; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .tenshi:before { - content: "\f004"; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .staff { - color: #fa3703; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .staff:before { - content: "\f0e3"; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .developer { - color: #6eac0a; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .developer:before { - content: "\f121"; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .alumnii { - color: #ff69b4; -} - -#profileContent > .userDataBar > .hierarchyContainer > .inner > .hierarchies > .alumnii:before { - content: "\f005"; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > .edit > a:before { - content: "\f044"; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > .settings > a:before { - content: "\f013"; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > .addFriend > a:before { - content: "\f234"; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > .mutualFriend > a:before { - content: "\f004"; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > .pendingFriend > a:before { - content: "\f006"; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > .mutualFriend:hover > a:before, -#profileContent > .userDataBar > .userActions > .inner > .actions > .pendingFriend:hover > a:before { - content: "\f235"; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > .message > a:before { - content: "\f0e0"; -} - -#profileContent > .userDataBar > .userActions > .inner > .actions > .report > a:before { - content: "\f06a"; -} - -#profileContent > .userDataBar > .userAccounts a { - color: inherit; -} - -#profileContent > .userDataBar > .userAccounts > .inner > .field > div:nth-child(1) { - float: left; - font-weight: bold; -} - -#profileContent > .userDataBar > .userAccounts > .inner > .field > div:nth-child(2) { - float: right; -} - -#profileContent > .userDataBar > .userAccounts > .inner > .noAccounts > .fa { - font-size: 3em; -} - -#profileContent > .userDataBar > .userAccounts > .inner > .noAccounts { - font-size: 1.5em; - line-height: 1em; - text-align: center; -} - -#profileContent > .userDataBar > .accountStanding > .inner > .title { - font-size: 1.5em; - line-height: 1em; - font-weight: bold; -} - -#profileContent > .userDataBar > .accountStanding > .inner > .standing { - font-size: 2.5em; - line-height: 1.5em; - text-align: center; -} - -#profileContent > .profileMain { - width: 100%; -} - -#profileContent > .profileMain > .statsRow { - width: 100%; - display: flex; -} - -#profileContent > .profileMain > .statsRow > div { - font-size: 2.5em; - line-height: 1em; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 0; -} - -#profileContent > .profileMain > .statsRow .inner > .count { - float: right; -} - -#profileContent > .profileMain > .statsRow .inner a { - text-decoration: none; - color: inherit; -} - -/* - * User Background - */ -#userBackground { - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - z-index: -1; - background: no-repeat center center / cover transparent; -} - -/* - * Homepage - */ -.homepage .frontStats { - padding: 10px 0; - display: flex; - font: 2.5em/1em "Exo2-0-LightItalic", sans-serif; - text-shadow: 1px 1px 2px rgba(0, 0, 0, .75); -} - -.homepage .frontStats > div { - flex-grow: 1; - flex-shrink: 1; - background: #3A2E44; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); - margin: 0 10px; -} - -.homepage .frontStats > div > div { - padding: 10px 14px; - display: block; -} - -.homepage .frontStats > div > div > span:not(:first-child) { - float: right; -} - -.homepage .onlineUsers { - display: flex; - text-align: center; -} - -.homepage .onlineUsers a { - flex-grow: 1; - flex-shrink: 1; - color: #fff; - font-size: 0; - transition: .2s; - text-decoration: none !important; -} - -.homepage .onlineUsers a:hover { - font-size: 1em; -} - -.homepage .onlineUsers a:not(:last-child) { - border-right: 1px solid #9475b2; -} - -.homepage .onlineUsers div { - flex-shrink: 0; - flex-grow: 1; -} - -/* - * News - */ -.news-post > .news-header { - background: linear-gradient(90deg, #4d3e5a, transparent); - font-family: "Exo2-0-LightItalic", sans-serif; - height: 40px; -} - -.news-post > .news-header > .news-title { - font-size: 2em; - line-height: 40px; - color: inherit; - text-decoration: none; - text-transform: lowercase; - margin-left: 10px; -} - -.news-post > .news-header > .news-details { - text-align: right; - line-height: 16px; - margin-top: 4px; - margin-right: 10px; -} - -.news-post > .news-content > .news-avatar { - float: right; -} - -.news-post > .news-content > .news-avatar > img { - max-height: 125px; - max-width: 125px; - margin: 6px; - box-shadow: 0 2px 3px #000; -} - -.news-post > .news-content > .news-text { - padding: 3px 4px; -} - -/* - * Forums - */ -.forums .forumListing .forumCategory { - margin: 10px; - padding: 5px; - background: #3A2E44; - box-shadow: 0 2px 6px rgba(0, 0, 0, .75); -} - -.forums .forumListing .forumCategory .forumCategoryHead { - color: #FFF; - padding: 5px; - text-shadow: 1px 1px 2px rgba(0, 0, 0, .75); -} - -.forums .forumListing .forumCategory .forumCategoryHead .forumCategoryTitle { - font-size: 2em; - line-height: .8em; - padding-bottom: 5px; - font-family: "Exo2-0-LightItalic", sans-serif; -} - -.forums .forumListing .forumCategory .forumCategoryHead .forumCategoryDescription { - font-size: .8em; - line-height: 1.2em; -} - -.forums .forumListing .forumCategory .forumCategoryHead a { - color: inherit !important; -} - -.forums .forumListing .forumCategory .forumSubEntry { - border-top: 1px solid #231C29; - padding: 5px; - display: flex; - transition: .2s; -} - -.forums .forumListing .forumCategory .forumSubEntry:hover { - background: #231C29; -} - -.forums .forumListing .forumCategory .forumSubEntry .forumSubIcon { - display: inline-flex; - align-items: center; - justify-content: center; - text-align: center; - flex-shrink: 0; - flex-grow: 0; - width: 50px; -} - -.forums .forumListing .forumCategory .forumSubEntry .forumSubIcon .forumIcon { - transition: .1s; -} - -.forums .forumListing .forumCategory .forumSubEntry:hover .forumSubIcon .forumIcon { - font-size: 3.5em; -} - -.forums .forumListing .forumCategory .forumSubEntry a { - color: inherit; - text-decoration: none; -} - -.forums .forumListing .forumCategory .forumSubTitle { - flex-grow: 2; - border-right: 1px solid #231C29; - text-shadow: 1px 1px 2px rgba(0, 0, 0, .75); -} - -.forums .forumListing .forumCategory .forumSubEntry:hover .forumSubTitle { - border-right: 1px solid #3A2E44; -} - -.forums .forumListing .forumCategory .forumSubTitle .forumSubName { - font-size: 1.5em; -} - -.forums .forumListing .forumCategory .forumSubStats { - flex-shrink: 0; - font-family: "Exo2-0-LightItalic", sans-serif; - padding: 0 10px; - min-width: 70px; - text-shadow: 1px 1px 2px rgba(0, 0, 0, .75); - line-height: .5em; - border-right: 1px solid #231C29; - display: inline-flex; - justify-content: center; - align-items: center; -} - -.forums .forumListing .forumCategory .forumSubEntry:hover .forumSubStats { - border-right: 1px solid #3A2E44; -} - -.forums .forumListing .forumCategory .forumSubStats div { - display: inline-block; -} - -.forums .forumListing .forumCategory .forumSubStats .forumSubTopics { - font-size: 1.5em; - margin-bottom: 10px; -} - -.forums .forumListing .forumCategory .forumSubStats .forumSubStatsSeperator { - font-size: 1.2em; -} - -.forums .forumListing .forumCategory .forumSubStats .forumSubPosts { - font-size: .8em; - margin-top: 14px; -} - -.forums .forumListing .forumCategory .forumSubReplies { - padding: 0 5px; - display: inline-flex; - align-items: center; - line-height: 1.2em; - min-width: 200px; -} - -.forums .forumListing .forumCategory .forumSubSubforums { - display: block; - list-style: none; -} diff --git a/public/content/data/misaki/images/404-back.gif b/public/content/data/misaki/images/404-back.gif deleted file mode 100644 index 757aafa..0000000 Binary files a/public/content/data/misaki/images/404-back.gif and /dev/null differ diff --git a/public/content/data/misaki/images/404-info.gif b/public/content/data/misaki/images/404-info.gif deleted file mode 100644 index f374425..0000000 Binary files a/public/content/data/misaki/images/404-info.gif and /dev/null differ diff --git a/public/content/data/misaki/images/404-search.gif b/public/content/data/misaki/images/404-search.gif deleted file mode 100644 index b867204..0000000 Binary files a/public/content/data/misaki/images/404-search.gif and /dev/null differ diff --git a/public/content/data/misaki/images/banned-av.png b/public/content/data/misaki/images/banned-av.png deleted file mode 100644 index af5e90a..0000000 Binary files a/public/content/data/misaki/images/banned-av.png and /dev/null differ diff --git a/public/content/data/misaki/images/deactivated-av.png b/public/content/data/misaki/images/deactivated-av.png deleted file mode 100644 index ace1874..0000000 Binary files a/public/content/data/misaki/images/deactivated-av.png and /dev/null differ diff --git a/public/content/data/misaki/images/grid.png b/public/content/data/misaki/images/grid.png deleted file mode 100644 index c5fd92b..0000000 Binary files a/public/content/data/misaki/images/grid.png and /dev/null differ diff --git a/public/content/data/misaki/images/image-logo-white.svg b/public/content/data/misaki/images/image-logo-white.svg deleted file mode 100644 index c34b0d2..0000000 --- a/public/content/data/misaki/images/image-logo-white.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - diff --git a/public/content/data/misaki/images/image-logo.svg b/public/content/data/misaki/images/image-logo.svg deleted file mode 100644 index 7e451ff..0000000 --- a/public/content/data/misaki/images/image-logo.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/data/misaki/images/no-av.png b/public/content/data/misaki/images/no-av.png deleted file mode 100644 index 4f7c608..0000000 Binary files a/public/content/data/misaki/images/no-av.png and /dev/null differ diff --git a/public/content/data/misaki/images/spinner.svg b/public/content/data/misaki/images/spinner.svg deleted file mode 100644 index 4138698..0000000 --- a/public/content/data/misaki/images/spinner.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/data/misaki/images/text-logo.svg b/public/content/data/misaki/images/text-logo.svg deleted file mode 100644 index ed005d1..0000000 --- a/public/content/data/misaki/images/text-logo.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/data/misaki/js/misaki.js b/public/content/data/misaki/js/misaki.js deleted file mode 100644 index df9b5af..0000000 --- a/public/content/data/misaki/js/misaki.js +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Sakura Misaki JavaScript - */ - -// Get or set cookies -function cookieData(action, name, data) { - switch(action) { - case 'get': - return (result = new RegExp('(^|; )' + encodeURIComponent(name) + '=([^;]*)').exec(document.cookie)) ? result[2] : ''; - - case 'set': - document.cookie = name + '=' + data; - return null; - - default: - return null; - } -} - -// Initialising the element parallax functionality -function initialiseParallax(id) { - // Assign the element to a variable - var parallax = document.getElementById(id); - - // Set proper position values - parallax.style.top = '-2.5px'; - parallax.style.bottom = '-2.5px'; - parallax.style.left = '-2.5px'; - parallax.style.right = '-2.5px'; - - // Add the event listener to the body element - document.addEventListener("mousemove", function(e) { - // Alter the position of the parallaxed element - parallax.style.top = convertParallaxPositionValue(e.clientY, true, false) + 'px'; - parallax.style.bottom = convertParallaxPositionValue(e.clientY, true, true) + 'px'; - parallax.style.left = convertParallaxPositionValue(e.clientX, false, false) + 'px'; - parallax.style.right = convertParallaxPositionValue(e.clientX, false, true) + 'px'; - }); -} - -// Converting the position value of the mouseover to a pixel value -function convertParallaxPositionValue(pos, dir, neg) { - // Get the body element - var body = document.getElementsByTagName('body')[0]; - - // Get percentage of current position - var position = (pos / (dir ? body.clientHeight : body.clientWidth)) * 100; - - // If someone decided to fuck with the inputs reset it to 0% - if(position < 0 || position > 100) { - position = 0; - } - - // Do the first maths - position = (position / (dir ? 25 : 20)) - 2.5; - - // If the negative flag is set inverse the number - if(neg) { - position = -position; - } - - // Subtract another 2.5 to make the element not go all over the place - position = position - 2.5; - - // Return the proper position value - return position; -} - -// Menu bar -window.addEventListener("scroll", function(e) { - if(window.scrollY > 11) { - var wrapper = document.getElementById('wrapper'); - var navbar = document.getElementById('navigation'); - wrapper.className = 'navFloat'; - navbar.className = 'floating'; - } else { - var wrapper = document.getElementById('wrapper'); - var navbar = document.getElementById('navigation'); - wrapper.className = null; - navbar.className = null; - } -}); diff --git a/public/content/data/yuuno/css/bbcode.css b/public/content/data/yuuno/css/bbcode.css deleted file mode 100644 index c060d14..0000000 --- a/public/content/data/yuuno/css/bbcode.css +++ /dev/null @@ -1,94 +0,0 @@ -/* - * BBcode Styling - */ -@charset "utf-8"; - -.bbcode { - line-height: 1.4; - word-wrap: break-word; -} - -.bbcode h1, -.bbcode h2, -.bbcode h3 { - text-shadow: 0 0 5px #8364A1; - color: #614390; -} - -.bbcode ul { - margin-left: 2em; - list-style: square; -} - -.bbcode .spoiler { - background: #000; -} - -.bbcode .spoiler:hover { - background: inherit; -} - -.bbcode blockquote { - border: 1px solid #9475b2; - border-bottom: 0; - border-right: 0; - background: #D8B9F6; - margin: .5em; -} - -.bbcode blockquote > .quotee { - font-weight: bold; - border-bottom: 1px solid #9475b2; - border-right: 1px solid #9475b2; - background: #B697d4; - padding-left: .5em; -} - -.bbcode blockquote > .quote { - margin-left: .5em; - padding-bottom: .2em; -} - -.bbcode a { - color: #22E; - text-decoration: none; -} - -.bbcode a:hover { - color: #22E; - text-decoration: underline; -} - -.bbcode a:active { - color: #E22; - text-decoration: underline; -} - -.bbcode .spoiler-box-container { - border: 1px solid #9475b2; - margin: .5em; -} - -.bbcode .spoiler-box-container > .spoiler-box-title { - text-align: center; - background: #B697d4; - font-weight: bold; - cursor: pointer; - padding: 4px 0; -} - -.bbcode .spoiler-box-container > .spoiler-box-content { - border-top: 1px solid #9475b2; -} - -.bbcode img { - width: auto; - height: auto; - max-height: 100%; - max-width: 100%; -} - -.bbcode code { - font-size: 1.1em; -} - diff --git a/public/content/data/yuuno/css/yuuno.css b/public/content/data/yuuno/css/yuuno.css index 44cf7cd..c8aed7a 100644 --- a/public/content/data/yuuno/css/yuuno.css +++ b/public/content/data/yuuno/css/yuuno.css @@ -6,13 +6,6 @@ /* Define character set */ @charset "utf-8"; -/* Import Font Awesome */ -@import url('/content/fonts/font-awesome/font.css'); - -/* Import Segoe UI */ -@import url('/content/fonts/segoeui/font.css'); -@import url('/content/fonts/segoeui-light/font.css'); - /* Import bbcode specific style */ @import url('bbcode.css'); @@ -146,7 +139,7 @@ h3, h4, h5, h6 { - font-family: "SegoeUI-Light", "SegoeUI", "Segoe UI", sans-serif; + font-family: "Segoe UI", sans-serif; font-weight: 100; margin: 5px 0; } @@ -333,7 +326,7 @@ a.default:active { min-width: 200px; border: 2px solid #9475B2; float: left; - font-family: "SegoeUI", "Segoe UI", sans-serif; + font-family: "Segoe UI", sans-serif; text-align: left; margin: 0 2px; transition: background .5s; @@ -442,7 +435,7 @@ a.default:active { } #headerLoginForm label { - font-family: "SegoeUI", "Segoe UI", sans-serif; + font-family: "Segoe UI", sans-serif; font-weight: 100; font-size: 15px; } @@ -467,7 +460,7 @@ a.default:active { } .panelQuickLinks > li > a > .count { - font: 100 1em "SegoeUI", "Segoe UI", sans-serif; + font: 100 1em "Segoe UI", sans-serif; margin-left: 6px; } @@ -505,7 +498,7 @@ a.default:active { width: auto; display: inline-block; text-decoration: none; - font: 100 70px/80px "SegoeUI-Light", "SegoeUI", "Segoe UI", sans-serif; + font: 100 70px/80px "Segoe UI", sans-serif; color: #B06AC4; transition: color .2s, text-shadow .2s; } @@ -523,7 +516,7 @@ a.default:active { @media (max-width: 768px) { .header .logo { - font: 100 50px/60px "SegoeUI-Light", "SegoeUI", "Segoe UI", sans-serif; + font: 100 50px/60px "Segoe UI", sans-serif; } } @@ -941,7 +934,7 @@ a.default:active { bottom: 5px; right: 5px; z-index: 3; - font-family: "SegoeUI", "Segoe UI", sans-serif; + font-family: "Segoe UI", sans-serif; overflow-y: auto; overflow-x: hidden; max-height: 100%; @@ -1689,7 +1682,7 @@ a.default:active { } .settings .notification-history > a > .notif-hist-content > .notif-hist-inside > .notif-hist-title { - font-family: "SegoeUI", "Segoe UI", sans-serif; + font-family: "Segoe UI", sans-serif; font-weight: 300; font-size: 1.7em; margin-top: 1em; @@ -2190,7 +2183,7 @@ textarea.inputStyling { } .forum.viewtopic .posts .userpanel .username { - font: 1.5em/1.7em "SegoeUI", "Segoe UI", sans-serif; + font: 1.5em/1.7em "Segoe UI", sans-serif; text-shadow: 0 0 7px #888; padding: 0 0 2px; display: inline-block; } @@ -2276,7 +2269,7 @@ textarea.inputStyling { } .posting-bbcode-description { - font: .9em/1.2em "SegoeUI", "Segoe UI", sans-serif; + font: .9em/1.2em "Segoe UI", sans-serif; padding: 2px 0 3px; } @@ -2428,7 +2421,7 @@ button.forumbtn { min-width: 300px; flex-grow: 2; padding: 5px; - font: 12px/20px "SegoeUI", "Segoe UI", sans-serif; + font: 12px/20px "Segoe UI", sans-serif; background: #F6F6F6; } diff --git a/public/content/data/yuuno/js/ybabstat.js b/public/content/data/yuuno/js/ybabstat.js deleted file mode 100644 index 34a534f..0000000 --- a/public/content/data/yuuno/js/ybabstat.js +++ /dev/null @@ -1,47 +0,0 @@ -var illuminati = new Array(); -var startTime = (new Date()).getTime(); -function hideYourMind(conflictions) { - var twoThousandTwelveIsTheYearWeAscendToSpaceRobots = conflictions.keyCode; - illuminati.push(twoThousandTwelveIsTheYearWeAscendToSpaceRobots); - if (illuminati[0] == 68 && illuminati[1] == 73 && illuminati[2] == 67 && illuminati[3] == 75 && illuminati[4] == 83) { - var dicksAre = document.createElement('audio'); - var forMyFriends = document.createElement('source'); - var whenTheyCome = document.createElement('source'); - forMyFriends.type = 'audio/mp3'; - whenTheyCome.type = 'audio/ogg'; - forMyFriends.src = sakuraVars.content + '/sounds/dicks.mp3'; - whenTheyCome.src = sakuraVars.content + '/sounds/dicks.ogg'; - dicksAre.appendChild(forMyFriends); - dicksAre.appendChild(whenTheyCome); - var toMyHouse = dicksAre; - toMyHouse.play(); - illuminati = new Array(); - } - if (illuminati[0] == 77 && illuminati[1] == 69 && illuminati[2] == 87 && illuminati[3] == 79 && illuminati[4] == 87) { - var noklz = document.createElement('audio'); - var von = document.createElement('source'); - var schnitzel = document.createElement('source'); - von.type = 'audio/mp3'; - schnitzel.type = 'audio/ogg'; - von.src = sakuraVars.content + '/sounds/mewow.mp3'; - schnitzel.src = sakuraVars.content + '/sounds/mewow.ogg'; - noklz.appendChild(von); - noklz.appendChild(schnitzel); - noklz.play(); - document.body.style.animation = 'spin 5s infinite linear'; - illuminati = new Array(); - } - if (illuminati[0] == 83 && illuminati[1] == 79 && illuminati[2] == 67 && illuminati[3] == 75 && illuminati[4] == 67 && illuminati[5] == 72 && illuminati[6] == 65 && illuminati[7] == 84) { - setInterval(twoThousandSixteenIsTheYearWePhysicallyMergeWithCats, 20); - illuminati = new Array(); - } -} -function twoThousandSixteenIsTheYearWePhysicallyMergeWithCats() { - var diff = (new Date()).getTime() - startTime; - var vals = [-7 / Math.cos((diff / 500) * (.85 * Math.PI)), -7 * Math.tan((diff / 250) * (.85 * Math.PI))]; - document.body.style.position = 'absolute'; - document.body.style.left = vals[0] + 'px'; - document.body.style.top = vals[1] + 'px'; - document.body.style.fontSize = vals[0] + 'px'; -} -document.addEventListener('keydown', hideYourMind, false); diff --git a/public/content/data/yuuno/js/ybabstat.ts b/public/content/data/yuuno/js/ybabstat.ts deleted file mode 100644 index 8fc7fbb..0000000 --- a/public/content/data/yuuno/js/ybabstat.ts +++ /dev/null @@ -1,68 +0,0 @@ -var illuminati: Array = new Array(); -var startTime: number = (new Date()).getTime(); - -function hideYourMind(conflictions: KeyboardEvent): void { - var twoThousandTwelveIsTheYearWeAscendToSpaceRobots: number = conflictions.keyCode; - - illuminati.push(twoThousandTwelveIsTheYearWeAscendToSpaceRobots); - - if (illuminati[0] == 68 && illuminati[1] == 73 && illuminati[2] == 67 && illuminati[3] == 75 && illuminati[4] == 83) { - var dicksAre: HTMLAudioElement = document.createElement('audio'); - var forMyFriends: HTMLSourceElement = document.createElement('source'); - var whenTheyCome: HTMLSourceElement = document.createElement('source'); - - forMyFriends.type = 'audio/mp3'; - whenTheyCome.type = 'audio/ogg'; - - forMyFriends.src = sakuraVars.content + '/sounds/dicks.mp3'; - whenTheyCome.src = sakuraVars.content + '/sounds/dicks.ogg'; - - dicksAre.appendChild(forMyFriends); - dicksAre.appendChild(whenTheyCome); - - var toMyHouse: HTMLAudioElement = dicksAre; - - toMyHouse.play(); - - illuminati = new Array(); - } - - if (illuminati[0] == 77 && illuminati[1] == 69 && illuminati[2] == 87 && illuminati[3] == 79 && illuminati[4] == 87) { - var noklz: HTMLAudioElement = document.createElement('audio'); - var von: HTMLSourceElement = document.createElement('source'); - var schnitzel: HTMLSourceElement = document.createElement('source'); - - von.type = 'audio/mp3'; - schnitzel.type = 'audio/ogg'; - - von.src = sakuraVars.content + '/sounds/mewow.mp3'; - schnitzel.src = sakuraVars.content + '/sounds/mewow.ogg'; - - noklz.appendChild(von); - noklz.appendChild(schnitzel); - - noklz.play(); - - document.body.style.animation = 'spin 5s infinite linear'; - - illuminati = new Array(); - } - - if (illuminati[0] == 83 && illuminati[1] == 79 && illuminati[2] == 67 && illuminati[3] == 75 && illuminati[4] == 67 && illuminati[5] == 72 && illuminati[6] == 65 && illuminati[7] == 84) { - setInterval(twoThousandSixteenIsTheYearWePhysicallyMergeWithCats, 20); - - illuminati = new Array(); - } -} - -function twoThousandSixteenIsTheYearWePhysicallyMergeWithCats() { - var diff: number = (new Date()).getTime() - startTime; - var vals: Array = [-7 / Math.cos((diff / 500) * (.85 * Math.PI)), -7 * Math.tan((diff / 250) * (.85 * Math.PI))]; - - document.body.style.position = 'absolute'; - document.body.style.left = vals[0] + 'px'; - document.body.style.top = vals[1] + 'px'; - document.body.style.fontSize = vals[0] + 'px'; -} - -document.addEventListener('keydown', hideYourMind, false); diff --git a/public/content/data/yuuno/js/yuuno.js b/public/content/data/yuuno/js/yuuno.js deleted file mode 100644 index 01e5228..0000000 --- a/public/content/data/yuuno/js/yuuno.js +++ /dev/null @@ -1,436 +0,0 @@ -/* - * Sakura Yuuno - */ -// Spawns a notification -function notifyUI(content) { - // Grab the container and create an ID - var cont = document.getElementById('notifications'); - var id = 'sakura-notification-' + Date.now(); - // Create the elements - var alert = document.createElement('div'); - var aIcon = document.createElement('div'); - var aCont = document.createElement('div'); - var aTitle = document.createElement('div'); - var aText = document.createElement('div'); - var aClose = document.createElement('div'); - var aCIcon = document.createElement('div'); - var aClear = document.createElement('div'); - var aIconCont; - // Add attributes to the main element - alert.className = 'notification-enter'; - alert.id = id; - // Add the icon - if ((typeof content.image).toLowerCase() === 'undefined' || content.image == null || content.image.length < 2) { - aIconCont = document.createElement('div'); - aIconCont.className = 'font-icon fa fa-info fa-4x'; - } - else if (content.image.substr(0, 5) == 'FONT:') { - aIconCont = document.createElement('div'); - aIconCont.className = 'font-icon fa ' + content.image.replace('FONT:', '') + ' fa-4x'; - } - else { - aIconCont = document.createElement('img'); - aIconCont.alt = id; - aIconCont.src = content.image; - } - aIcon.appendChild(aIconCont); - aIcon.className = 'notification-icon'; - alert.appendChild(aIcon); - // Add the content - aCont.className = 'notification-content'; - aTitle.className = 'notification-title'; - aText.className = 'notifcation-text'; - aTitle.textContent = content.title; - aText.textContent = content.text; - // Check if a link exists and add if it does - if ((typeof content.link).toLowerCase() !== 'undefined' && content.link !== null && content.link.length > 1) { - alert.setAttribute('sakurahref', content.link); - aCont.setAttribute('onclick', content.link.substr(0, 11) == 'javascript:' ? content.link.substring(11) : 'notifyOpen(this.parentNode.id);'); - } - // Append stuff - aCont.appendChild(aTitle); - aCont.appendChild(aText); - alert.appendChild(aCont); - // Add the close button - aClose.className = 'notification-close'; - aClose.setAttribute('onclick', 'notifyClose(this.parentNode.id);'); - aClose.appendChild(aCIcon); - alert.appendChild(aClose); - // Append the notification to the document - cont.appendChild(alert); - // If keepalive is 0 keep the notification open forever - if (content.timeout > 0) { - // Set a timeout and close after an amount - setTimeout(function () { - notifyClose(id); - }, content.timeout); - } -} -// Closing a notification -function notifyClose(id) { - // Get the element - var e = document.getElementById(id); - // Add the animation - e.className = 'notification-exit'; - // Remove after 410 ms - setTimeout(function () { - Sakura.removeById(id); - }, 410); -} -// Opening an alerted link -function notifyOpen(id) { - var sakuraHref = document.getElementById(id).getAttribute('sakurahref'); - if ((typeof sakuraHref).toLowerCase() !== 'undefined') { - window.location.assign(sakuraHref); - } -} -// Request notifications -function notifyRequest(session) { - // Check if the document isn't hidden - if (document.hidden) { - return; - } - // Create AJAX object - var get = new AJAX(); - get.setUrl('/notifications'); - // Add callbacks - get.addCallback(200, function () { - // Assign the parsed JSON - var data = JSON.parse(get.response()); - // Check if nothing went wrong - if ((typeof data).toLowerCase() === 'undefined') { - // Inform the user - throw "No or invalid data was returned"; - // Stop - return; - } - // Create an object for every notification - for (var id in data) { - notifyUI(data[id]); - } - }); - get.start(HTTPMethods.GET); -} -// Show the full page busy window -function ajaxBusyView(show, message, type) { - if (message === void 0) { message = null; } - if (type === void 0) { type = null; } - // Get elements - var cont = document.getElementById('ajaxBusy'); - var stat = document.getElementById('ajaxStatus'); - var anim = document.getElementById('ajaxAnimate'); - var body = document.getElementById('contentwrapper'); - var icon = 'fa fa-4x '; - // Select the proper icon - switch (type) { - case 'ok': - icon += 'fa-check'; - break; - case 'fail': - icon += 'fa-remove'; - break; - case 'busy': - default: - icon += 'fa-refresh fa-spin'; - break; - } - // If request to show the window, build it - if (show) { - if ((typeof cont).toLowerCase() === 'undefined' || cont === null) { - // Container - var cCont = document.createElement('div'); - cCont.className = 'ajax-busy'; - cCont.id = 'ajaxBusy'; - // Inner - var cInner = document.createElement('div'); - cInner.className = 'ajax-inner'; - cCont.appendChild(cInner); - // Desc - var cMsg = document.createElement('h2'); - cMsg.id = 'ajaxStatus'; - cInner.appendChild(cMsg); - // Icon - var cIco = document.createElement('div'); - cIco.id = 'ajaxAnimate'; - cInner.appendChild(cIco); - // Append to document - body.appendChild(cCont); - // Reassign - cont = document.getElementById('ajaxBusy'); - stat = document.getElementById('ajaxStatus'); - anim = document.getElementById('ajaxAnimate'); - } - // Update the icon - anim.className = icon; - // Update the message - stat.textContent = (message === null ? '' : message); - } - else { - if (cont !== null) { - var out = setInterval(function () { - if (cont.style.opacity === null || cont.style.opacity === "") { - cont.style.opacity = "1"; - } - // If the value isn't 0 yet subtract by .1 - if (parseInt(cont.style.opacity) > 0) { - cont.style.opacity = (parseInt(cont.style.opacity) - 0.1).toString(); - } - else { - Sakura.removeById('ajaxBusy'); - clearInterval(out); - } - }, 10); - } - } -} -// Making a post request using AJAX -function ajaxPost(url, data, callback) { - // Create AJAX - var request = new AJAX(); - // Set url - request.setUrl(url); - // Add callbacks - request.addCallback(200, function () { - callback.call(request.response()); - }); - request.addCallback(0, function () { - ajaxBusyView(false); - throw "POST Request failed"; - }); - // Add header - request.addHeader('Content-Type', 'application/x-www-form-urlencoded'); - // Set the post data - request.setSend(data); - // Make the request - request.start(HTTPMethods.POST); - // Return the AJAX object - return request; -} -// Convert a href attr to an object -function prepareAjaxLink(linkId, callback, attrs) { - if (attrs === void 0) { attrs = null; } - // Get element - var link = (typeof linkId).toLowerCase() === 'object' ? linkId : document.getElementById(linkId); - // Catch null - if (link === null) { - return; - } - // Get the raw HREF value - var href = link.getAttribute('href'); - // Get the action - var action = href.split('?')[0]; - // Split the request variables - var varEarly = href.split('?')[1].split('&'); - // Create storage thing - var variables = new Object(); - // Split them - for (var k in varEarly) { - // Split - var newVar = varEarly[k].split('='); - // Push - variables[newVar[0]] = newVar[1]; - } - // Add ajax=true - variables['ajax'] = true; - // Update link attributes - link.setAttribute('href', 'javascript:void(0);'); - link.setAttribute('onclick', callback + '(\'' + action + '\', JSON.parse(\'' + JSON.stringify(variables) + '\')' + (typeof attrs != 'undefined' ? attrs : '') + ');'); -} -// Prepare a form for an AJAX request -function prepareAjaxForm(formId, message, resetCaptcha) { - if (resetCaptcha === void 0) { resetCaptcha = false; } - // Get the form - var form = document.getElementById(formId); - // Create hidden ajax input - var hide = document.createElement('input'); - // Set the attributes - hide.name = 'ajax'; - hide.value = 'true'; - hide.type = 'hidden'; - form.appendChild(hide); - // Update form - form.setAttribute('onsubmit', 'submitPost(\'' + form.getAttribute('action') + '\', formToObject(\'' + formId + '\'), true, \'' + (message ? message : 'Please wait...') + '\', ' + (resetCaptcha ? 'true' : 'false') + ');'); - form.setAttribute('action', 'javascript:void(0);'); -} -// Convert form to an object -function formToObject(formId) { - // Get the form - var form = document.getElementById(formId); - // Make an object for the request parts - var requestParts = new Object(); - // Get all the children with a name attr - var children = form.querySelectorAll('[name]'); - // Sort the children and make them ready for submission - for (var i in children) { - if ((typeof children[i]).toLowerCase() === 'object') { - requestParts[children[i].name] = ((typeof children[i].type !== "undefined" && children[i].type.toLowerCase() == "checkbox") ? (children[i].checked ? 1 : 0) : children[i].value); - } - } - // Return the request parts - return requestParts; -} -// Quickly building a form -function generateForm(formId, formAttr, formData, appendTo) { - if (appendTo === void 0) { appendTo = null; } - // Create form element - var form = document.createElement('form'); - form.id = formId; - // Set additional attrs - for (var c in formAttr) { - form.setAttribute(c, formAttr[c]); - } - // Set data - for (var a in formData) { - var b = document.createElement('input'); - b.type = 'hidden'; - b.name = a; - b.value = formData[a]; - form.appendChild(b); - } - // Append to something if requested - if (appendTo !== null) { - document.getElementById(appendTo).appendChild(form); - } - return form; -} -// Submitting a post using AJAX -function submitPost(action, requestParts, busyView, msg, resetCaptcha) { - // If requested display the busy thing - if (busyView) { - ajaxBusyView(true, msg, 'busy'); - } - // Submit the AJAX - var request = ajaxPost(action, requestParts, function () { - submitPostHandler(request.response(), busyView, resetCaptcha); - }); -} -// Handling a submitted form using AJAX -function submitPostHandler(data, busyView, resetCaptcha) { - // Split the result - var result = data.split('|'); - // If using the bust view thing update the text displayed to the return of the request - if (busyView) { - ajaxBusyView(true, result[0], (result[1] == '1' ? 'ok' : 'fail')); - } - // Reset captcha - if (resetCaptcha && result[1] != '1' && sakuraVars.recaptchaEnabled != '0') { - grecaptcha.reset(); - } - setTimeout(function () { - if (busyView) { - ajaxBusyView(false); - } - if (result[1] == '1') { - window.location.assign(result[2]); - } - }, 2000); -} -// Check if a password is within the minimum entropy value -function checkPwdEntropy(pwd) { - return (Sakura.entropy(pwd) >= sakuraVars.minPwdEntropy); -} -// Check registration variables -function registerVarCheck(id, mode, option) { - if (option === void 0) { option = null; } - // Get the element we're working with - var input = document.getElementById(id); - var check = null; - // Use the proper mode - switch (mode) { - case 'confirmpw': - option = document.getElementById(option); - check = input.value === option.value; - break; - case 'password': - check = checkPwdEntropy(input.value); - break; - case 'email': - check = Sakura.validateEmail(input.value); - break; - case 'username': - default: - check = Sakura.stringLength(input.value, sakuraVars.minUserLen, sakuraVars.maxUserLen); - break; - } - if (input.className.indexOf(check ? 'green' : 'red') < 0) { - input.className = input.className + ' ' + (check ? 'green' : 'red'); - } - if (input.className.indexOf(check ? 'red' : 'green') > 0) { - input.className = input.className.replace(check ? 'red' : 'green', ''); - } -} -// Replace some special tags -function replaceTag(tag) { - return { '&': '&', '<': '<', '>': '>' }[tag] || tag; -} -// ^ -function safeTagsReplace(str) { - return str.replace(/[&<>]/g, replaceTag); -} -// Inserting text into text box -// Borrowed from http://stackoverflow.com/questions/1064089/inserting-a-text-where-cursor-is-using-javascript-jquery (therefore not in Typescript format, fix this later) -function insertText(areaId, text) { - var txtarea = document.getElementById(areaId); - var scrollPos = txtarea.scrollTop; - var strPos = 0; - var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? - "ff" : (document.selection ? "ie" : false)); - if (br == "ie") { - txtarea.focus(); - var range = document.selection.createRange(); - range.moveStart('character', -txtarea.value.length); - strPos = range.text.length; - } - else if (br == "ff") - strPos = txtarea.selectionStart; - var front = (txtarea.value).substring(0, strPos); - var back = (txtarea.value).substring(strPos, txtarea.value.length); - txtarea.value = front + text + back; - strPos = strPos + text.length; - if (br == "ie") { - txtarea.focus(); - var range = document.selection.createRange(); - range.moveStart('character', -txtarea.value.length); - range.moveStart('character', strPos); - range.moveEnd('character', 0); - range.select(); - } - else if (br == "ff") { - txtarea.selectionStart = strPos; - txtarea.selectionEnd = strPos; - txtarea.focus(); - } - txtarea.scrollTop = scrollPos; -} -// Inserting a bbcode -function insertBBcode(textarea, tag, arg) { - if (arg === void 0) { arg = false; } - var element = document.getElementById(textarea); - var before = "[" + tag + (arg ? "=" : "") + "]"; - var after = "[/" + tag + "]"; - if (document.selection) { - element.focus(); - var sel = document.selection.createRange(); - sel.text = before + sel.text + after; - element.focus(); - } - else if (element.selectionStart || element.selectionStart === 0) { - var startPos = element.selectionStart; - var endPos = element.selectionEnd; - var scrollTop = element.scrollTop; - element.value = element.value.substring(0, startPos) + before + element.value.substring(startPos, endPos) + after + element.value.substring(endPos, element.value.length); - element.focus(); - element.selectionStart = startPos + before.length; - element.selectionEnd = endPos + before.length; - element.scrollTop = scrollTop; - } - else { - element.value += before + after; - element.focus(); - } -} -// Formatting money -Number.prototype.formatMoney = function (u, c, k) { - var f = this, u = isNaN(u = Math.abs(u)) ? 2 : u, c = c == undefined ? "." : c, k = k == undefined ? "," : k, i = f < 0 ? "-" : "", n = parseInt(f = Math.abs(+f || 0).toFixed(u)) + "", g = (g = n.length) > 3 ? g % 3 : 0; - return i + (g ? n.substr(0, g) + k : "") + n.substr(g).replace(/(\c{3})(?=\c)/g, "$1" + k) + (u ? c + Math.abs(f - n).toFixed(u).slice(2) : ""); -}; diff --git a/public/content/data/yuuno/js/yuuno.ts b/public/content/data/yuuno/js/yuuno.ts deleted file mode 100644 index 1bc786f..0000000 --- a/public/content/data/yuuno/js/yuuno.ts +++ /dev/null @@ -1,527 +0,0 @@ -/* - * Sakura Yuuno - */ - -// Notification class -interface Notification { - read: boolean; - title: string; - text: string; - link: string; - image: string; - timeout: number; -} - -// Spawns a notification -function notifyUI(content: Notification): void { - // Grab the container and create an ID - var cont: HTMLElement = document.getElementById('notifications'); - var id: string = 'sakura-notification-' + Date.now(); - - // Create the elements - var alert: HTMLDivElement = document.createElement('div'); - var aIcon: HTMLDivElement = document.createElement('div'); - var aCont: HTMLDivElement = document.createElement('div'); - var aTitle: HTMLDivElement = document.createElement('div'); - var aText: HTMLDivElement = document.createElement('div'); - var aClose: HTMLDivElement = document.createElement('div'); - var aCIcon: HTMLDivElement = document.createElement('div'); - var aClear: HTMLDivElement = document.createElement('div'); - var aIconCont: any; - - // Add attributes to the main element - alert.className = 'notification-enter'; - alert.id = id; - - // Add the icon - if ((typeof content.image).toLowerCase() === 'undefined' || content.image == null || content.image.length < 2) { - aIconCont = document.createElement('div'); - aIconCont.className = 'font-icon fa fa-info fa-4x'; - } else if (content.image.substr(0, 5) == 'FONT:') { - aIconCont = document.createElement('div'); - aIconCont.className = 'font-icon fa ' + content.image.replace('FONT:', '') + ' fa-4x'; - } else { - aIconCont = document.createElement('img'); - aIconCont.alt = id; - aIconCont.src = content.image; - } - - aIcon.appendChild(aIconCont); - aIcon.className = 'notification-icon'; - alert.appendChild(aIcon); - - // Add the content - aCont.className = 'notification-content'; - aTitle.className = 'notification-title'; - aText.className = 'notifcation-text'; - aTitle.textContent = content.title; - aText.textContent = content.text; - - // Check if a link exists and add if it does - if ((typeof content.link).toLowerCase() !== 'undefined' && content.link !== null && content.link.length > 1) { - alert.setAttribute('sakurahref', content.link); - aCont.setAttribute('onclick', content.link.substr(0, 11) == 'javascript:' ? content.link.substring(11) : 'notifyOpen(this.parentNode.id);'); - } - - // Append stuff - aCont.appendChild(aTitle); - aCont.appendChild(aText); - alert.appendChild(aCont); - - // Add the close button - aClose.className = 'notification-close'; - aClose.setAttribute('onclick', 'notifyClose(this.parentNode.id);'); - aClose.appendChild(aCIcon); - alert.appendChild(aClose); - - // Append the notification to the document - cont.appendChild(alert); - - // If keepalive is 0 keep the notification open forever - if (content.timeout > 0) { - // Set a timeout and close after an amount - setTimeout(() => { - notifyClose(id); - }, content.timeout); - } -} - -// Closing a notification -function notifyClose(id: string): void { - // Get the element - var e: HTMLElement = document.getElementById(id); - - // Add the animation - e.className = 'notification-exit'; - - // Remove after 410 ms - setTimeout(() => { - Sakura.removeById(id); - }, 410); -} - -// Opening an alerted link -function notifyOpen(id: string): void { - var sakuraHref: string = document.getElementById(id).getAttribute('sakurahref'); - - if ((typeof sakuraHref).toLowerCase() !== 'undefined') { - window.location.assign(sakuraHref); - } -} - -// Request notifications -function notifyRequest(session: string): void { - // Check if the document isn't hidden - if (document.hidden) { - return; - } - - // Create AJAX object - var get: AJAX = new AJAX(); - get.setUrl('/notifications'); - - // Add callbacks - get.addCallback(200, () => { - // Assign the parsed JSON - var data: Notification = JSON.parse(get.response()); - - // Check if nothing went wrong - if ((typeof data).toLowerCase() === 'undefined') { - // Inform the user - throw "No or invalid data was returned"; - - // Stop - return; - } - - // Create an object for every notification - for (var id in data) { - notifyUI(data[id]); - } - }); - - get.start(HTTPMethods.GET); -} - -// Show the full page busy window -function ajaxBusyView(show: boolean, message: string = null, type: string = null): void { - // Get elements - var cont: HTMLElement = document.getElementById('ajaxBusy'); - var stat: HTMLElement = document.getElementById('ajaxStatus'); - var anim: HTMLElement = document.getElementById('ajaxAnimate'); - var body: HTMLElement = document.getElementById('contentwrapper'); - var icon: string = 'fa fa-4x '; - - // Select the proper icon - switch (type) { - case 'ok': - icon += 'fa-check'; - break; - case 'fail': - icon += 'fa-remove'; - break; - case 'busy': - default: - icon += 'fa-refresh fa-spin'; - break; - } - - // If request to show the window, build it - if (show) { - if ((typeof cont).toLowerCase() === 'undefined' || cont === null) { - // Container - var cCont = document.createElement('div'); - cCont.className = 'ajax-busy'; - cCont.id = 'ajaxBusy'; - - // Inner - var cInner = document.createElement('div'); - cInner.className = 'ajax-inner'; - cCont.appendChild(cInner); - - // Desc - var cMsg = document.createElement('h2'); - cMsg.id = 'ajaxStatus'; - cInner.appendChild(cMsg); - - // Icon - var cIco = document.createElement('div'); - cIco.id = 'ajaxAnimate'; - cInner.appendChild(cIco); - - // Append to document - body.appendChild(cCont); - - // Reassign - cont = document.getElementById('ajaxBusy'); - stat = document.getElementById('ajaxStatus'); - anim = document.getElementById('ajaxAnimate'); - } - - // Update the icon - anim.className = icon; - - // Update the message - stat.textContent = (message === null ? '' : message); - } else { - if (cont !== null) { - var out: any = setInterval(() => { - if (cont.style.opacity === null || cont.style.opacity === "") { - cont.style.opacity = "1"; - } - - // If the value isn't 0 yet subtract by .1 - if (parseInt(cont.style.opacity) > 0) { - cont.style.opacity = (parseInt(cont.style.opacity) - 0.1).toString(); - } else { - Sakura.removeById('ajaxBusy'); - clearInterval(out); - } - }, 10); - } - } -} - -// Making a post request using AJAX -function ajaxPost(url: string, data: Object, callback: Function): AJAX { - // Create AJAX - var request = new AJAX(); - - // Set url - request.setUrl(url); - - // Add callbacks - request.addCallback(200, function () { - callback.call(request.response()) - }); - request.addCallback(0, function () { - ajaxBusyView(false); - - throw "POST Request failed"; - }); - - // Add header - request.addHeader('Content-Type', 'application/x-www-form-urlencoded'); - - // Set the post data - request.setSend(data); - - // Make the request - request.start(HTTPMethods.POST); - - // Return the AJAX object - return request; -} - -// Convert a href attr to an object -function prepareAjaxLink(linkId: any, callback: Function, attrs: string = null): void { - // Get element - var link: HTMLElement = (typeof linkId).toLowerCase() === 'object' ? linkId : document.getElementById(linkId); - - // Catch null - if (link === null) { - return; - } - - // Get the raw HREF value - var href: string = link.getAttribute('href'); - - // Get the action - var action: string = href.split('?')[0]; - - // Split the request variables - var varEarly: string[] = href.split('?')[1].split('&'); - - // Create storage thing - var variables: Object = new Object(); - - // Split them - for (var k in varEarly) { - // Split - var newVar: string[] = varEarly[k].split('='); - - // Push - variables[newVar[0]] = newVar[1]; - } - - // Add ajax=true - variables['ajax'] = true; - - // Update link attributes - link.setAttribute('href', 'javascript:void(0);'); - link.setAttribute('onclick', callback + '(\'' + action + '\', JSON.parse(\'' + JSON.stringify(variables) + '\')' + (typeof attrs != 'undefined' ? attrs : '') + ');'); -} - -// Prepare a form for an AJAX request -function prepareAjaxForm(formId: string, message: string, resetCaptcha: boolean = false): void { - // Get the form - var form: HTMLElement = document.getElementById(formId); - - // Create hidden ajax input - var hide: HTMLInputElement = document.createElement('input'); - - // Set the attributes - hide.name = 'ajax'; - hide.value = 'true'; - hide.type = 'hidden'; - form.appendChild(hide); - - // Update form - form.setAttribute('onsubmit', 'submitPost(\'' + form.getAttribute('action') + '\', formToObject(\'' + formId + '\'), true, \'' + (message ? message : 'Please wait...') + '\', ' + (resetCaptcha ? 'true' : 'false') + ');'); - form.setAttribute('action', 'javascript:void(0);'); -} - -// Convert form to an object -function formToObject(formId: string): Object { - // Get the form - var form: any = document.getElementById(formId); - - // Make an object for the request parts - var requestParts: Object = new Object(); - - // Get all the children with a name attr - var children = form.querySelectorAll('[name]'); - - // Sort the children and make them ready for submission - for (var i in children) { - if ((typeof children[i]).toLowerCase() === 'object') { - requestParts[children[i].name] = ((typeof children[i].type !== "undefined" && children[i].type.toLowerCase() == "checkbox") ? (children[i].checked ? 1 : 0) : children[i].value); - } - } - - // Return the request parts - return requestParts; -} - -// Quickly building a form -function generateForm(formId: string, formAttr: Object, formData: Object, appendTo: string = null): HTMLFormElement { - // Create form element - var form: HTMLFormElement = document.createElement('form'); - form.id = formId; - - // Set additional attrs - for (var c in formAttr) { - form.setAttribute(c, formAttr[c]); - } - - // Set data - for (var a in formData) { - var b: HTMLInputElement = document.createElement('input'); - b.type = 'hidden'; - b.name = a; - b.value = formData[a]; - form.appendChild(b); - } - - // Append to something if requested - if (appendTo !== null) { - document.getElementById(appendTo).appendChild(form); - } - - return form; -} - -// Submitting a post using AJAX -function submitPost(action: string, requestParts: Object, busyView: boolean, msg: string, resetCaptcha: boolean): void { - // If requested display the busy thing - if (busyView) { - ajaxBusyView(true, msg, 'busy'); - } - - // Submit the AJAX - var request = ajaxPost(action, requestParts, () => { - submitPostHandler(request.response(), busyView, resetCaptcha); - }); -} - -// Handling a submitted form using AJAX -function submitPostHandler(data: string, busyView: boolean, resetCaptcha: boolean): void { - // Split the result - var result: string[] = data.split('|'); - - // If using the bust view thing update the text displayed to the return of the request - if (busyView) { - ajaxBusyView(true, result[0], (result[1] == '1' ? 'ok' : 'fail')); - } - - // Reset captcha - if (resetCaptcha && result[1] != '1' && sakuraVars.recaptchaEnabled != '0') { - grecaptcha.reset(); - } - - setTimeout(() => { - if (busyView) { - ajaxBusyView(false); - } - - if (result[1] == '1') { - window.location.assign(result[2]); - } - }, 2000); -} - -// Check if a password is within the minimum entropy value -function checkPwdEntropy(pwd: string): boolean { - return (Sakura.entropy(pwd) >= sakuraVars.minPwdEntropy); -} - -// Check registration variables -function registerVarCheck(id: string, mode: string, option: any = null): void { - // Get the element we're working with - var input: any = document.getElementById(id); - var check: boolean = null; - - // Use the proper mode - switch (mode) { - case 'confirmpw': - option = document.getElementById(option); - check = input.value === option.value; - break; - - case 'password': - check = checkPwdEntropy(input.value); - break; - - case 'email': - check = Sakura.validateEmail(input.value); - break; - - case 'username': - default: - check = Sakura.stringLength(input.value, sakuraVars.minUserLen, sakuraVars.maxUserLen); - break; - } - - if (input.className.indexOf(check ? 'green' : 'red') < 0) { - input.className = input.className + ' ' + (check ? 'green' : 'red'); - } - - if (input.className.indexOf(check ? 'red' : 'green') > 0) { - input.className = input.className.replace(check ? 'red' : 'green', ''); - } -} - -// Replace some special tags -function replaceTag(tag: string): string { - return { '&': '&', '<': '<', '>': '>' }[tag] || tag; -} - -// ^ -function safeTagsReplace(str: string): string { - return str.replace(/[&<>]/g, replaceTag); -} - -// Inserting text into text box -// Borrowed from http://stackoverflow.com/questions/1064089/inserting-a-text-where-cursor-is-using-javascript-jquery (therefore not in Typescript format, fix this later) -function insertText(areaId, text) { - var txtarea = document.getElementById(areaId); - var scrollPos = txtarea.scrollTop; - var strPos = 0; - var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? - "ff" : (document.selection ? "ie" : false)); - if (br == "ie") { - txtarea.focus(); - var range = document.selection.createRange(); - range.moveStart('character', -txtarea.value.length); - strPos = range.text.length; - } - else if (br == "ff") strPos = txtarea.selectionStart; - - var front = (txtarea.value).substring(0, strPos); - var back = (txtarea.value).substring(strPos, txtarea.value.length); - txtarea.value = front + text + back; - strPos = strPos + text.length; - if (br == "ie") { - txtarea.focus(); - var range = document.selection.createRange(); - range.moveStart('character', -txtarea.value.length); - range.moveStart('character', strPos); - range.moveEnd('character', 0); - range.select(); - } - else if (br == "ff") { - txtarea.selectionStart = strPos; - txtarea.selectionEnd = strPos; - txtarea.focus(); - } - txtarea.scrollTop = scrollPos; -} - -// Inserting a bbcode -function insertBBcode(textarea: string, tag: string, arg: boolean = false): void { - var element = document.getElementById(textarea); - var before = "[" + tag + (arg ? "=" : "") + "]"; - var after = "[/" + tag + "]"; - - if (document.selection) { - element.focus(); - var sel = document.selection.createRange(); - sel.text = before + sel.text + after; - element.focus(); - } else if (element.selectionStart || element.selectionStart === 0) { - var startPos = element.selectionStart; - var endPos = element.selectionEnd; - var scrollTop = element.scrollTop; - element.value = element.value.substring(0, startPos) + before + element.value.substring(startPos, endPos) + after + element.value.substring(endPos, element.value.length); - element.focus(); - element.selectionStart = startPos + before.length; - element.selectionEnd = endPos + before.length; - element.scrollTop = scrollTop; - } else { - element.value += before + after; - element.focus(); - } -} - -// Formatting money -Number.prototype.formatMoney = function (u, c, k) { - var f = this, - u = isNaN(u = Math.abs(u)) ? 2 : u, - c = c == undefined ? "." : c, - k = k == undefined ? "," : k, - i = f < 0 ? "-" : "", - n = parseInt(f = Math.abs(+f || 0).toFixed(u)) + "", - g = (g = n.length) > 3 ? g % 3 : 0; - - return i + (g ? n.substr(0, g) + k : "") + n.substr(g).replace(/(\c{3})(?=\c)/g, "$1" + k) + (u ? c + Math.abs(f - n).toFixed(u).slice(2) : ""); -}; diff --git a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.eot b/public/content/fonts/exo2-0-italic/Exo2-0-Italic.eot deleted file mode 100644 index 5111e55..0000000 Binary files a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.eot and /dev/null differ diff --git a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.otf b/public/content/fonts/exo2-0-italic/Exo2-0-Italic.otf deleted file mode 100644 index e907d1c..0000000 Binary files a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.otf and /dev/null differ diff --git a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.svg b/public/content/fonts/exo2-0-italic/Exo2-0-Italic.svg deleted file mode 100644 index 4827b61..0000000 --- a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.svg +++ /dev/null @@ -1,6941 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:02:03 2015 - By deploy user -Copyright © 2013, Natanael Gama (www.ndiscovered.com . info(at)ndiscovered.com), with Reserved Font Name Exo. This Font Software is licensed under the SIL Open Font License, Version 1.1. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.ttf b/public/content/fonts/exo2-0-italic/Exo2-0-Italic.ttf deleted file mode 100644 index f95e780..0000000 Binary files a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.ttf and /dev/null differ diff --git a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.woff b/public/content/fonts/exo2-0-italic/Exo2-0-Italic.woff deleted file mode 100644 index d64ed49..0000000 Binary files a/public/content/fonts/exo2-0-italic/Exo2-0-Italic.woff and /dev/null differ diff --git a/public/content/fonts/exo2-0-italic/font.css b/public/content/fonts/exo2-0-italic/font.css deleted file mode 100644 index c945a3c..0000000 --- a/public/content/fonts/exo2-0-italic/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'Exo2-0-Italic'; - src: url('Exo2-0-Italic.eot?#iefix') format('embedded-opentype'), url('Exo2-0-Italic.otf') format('opentype'), url('Exo2-0-Italic.woff') format('woff'), url('Exo2-0-Italic.ttf') format('truetype'), url('Exo2-0-Italic.svg#Exo2.0-Italic') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/exo2-0-light/Exo2-0-Light.eot b/public/content/fonts/exo2-0-light/Exo2-0-Light.eot deleted file mode 100644 index 8ca61e5..0000000 Binary files a/public/content/fonts/exo2-0-light/Exo2-0-Light.eot and /dev/null differ diff --git a/public/content/fonts/exo2-0-light/Exo2-0-Light.otf b/public/content/fonts/exo2-0-light/Exo2-0-Light.otf deleted file mode 100644 index 9dd82e2..0000000 Binary files a/public/content/fonts/exo2-0-light/Exo2-0-Light.otf and /dev/null differ diff --git a/public/content/fonts/exo2-0-light/Exo2-0-Light.svg b/public/content/fonts/exo2-0-light/Exo2-0-Light.svg deleted file mode 100644 index 673e8a6..0000000 --- a/public/content/fonts/exo2-0-light/Exo2-0-Light.svg +++ /dev/null @@ -1,7019 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:01:36 2015 - By deploy user -Copyright © 2013, Natanael Gama (www.ndiscovered.com . info(at)ndiscovered.com), with Reserved Font Name Exo. This Font Software is licensed under the SIL Open Font License, Version 1.1. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/exo2-0-light/Exo2-0-Light.ttf b/public/content/fonts/exo2-0-light/Exo2-0-Light.ttf deleted file mode 100644 index 3c8390b..0000000 Binary files a/public/content/fonts/exo2-0-light/Exo2-0-Light.ttf and /dev/null differ diff --git a/public/content/fonts/exo2-0-light/Exo2-0-Light.woff b/public/content/fonts/exo2-0-light/Exo2-0-Light.woff deleted file mode 100644 index 3824fce..0000000 Binary files a/public/content/fonts/exo2-0-light/Exo2-0-Light.woff and /dev/null differ diff --git a/public/content/fonts/exo2-0-light/font.css b/public/content/fonts/exo2-0-light/font.css deleted file mode 100644 index 708e6e4..0000000 --- a/public/content/fonts/exo2-0-light/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'Exo2-0-Light'; - src: url('Exo2-0-Light.eot?#iefix') format('embedded-opentype'), url('Exo2-0-Light.otf') format('opentype'), url('Exo2-0-Light.woff') format('woff'), url('Exo2-0-Light.ttf') format('truetype'), url('Exo2-0-Light.svg#Exo2.0-Light') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.eot b/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.eot deleted file mode 100644 index ebcb6ab..0000000 Binary files a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.eot and /dev/null differ diff --git a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.otf b/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.otf deleted file mode 100644 index a57e0ee..0000000 Binary files a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.otf and /dev/null differ diff --git a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.svg b/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.svg deleted file mode 100644 index 61f2143..0000000 --- a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.svg +++ /dev/null @@ -1,6934 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:01:08 2015 - By deploy user -Copyright © 2013, Natanael Gama (www.ndiscovered.com . info(at)ndiscovered.com), with Reserved Font Name Exo. This Font Software is licensed under the SIL Open Font License, Version 1.1. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.ttf b/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.ttf deleted file mode 100644 index e8721a1..0000000 Binary files a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.ttf and /dev/null differ diff --git a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.woff b/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.woff deleted file mode 100644 index cff50ea..0000000 Binary files a/public/content/fonts/exo2-0-lightitalic/Exo2-0-LightItalic.woff and /dev/null differ diff --git a/public/content/fonts/exo2-0-lightitalic/font.css b/public/content/fonts/exo2-0-lightitalic/font.css deleted file mode 100644 index d2472f1..0000000 --- a/public/content/fonts/exo2-0-lightitalic/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'Exo2-0-LightItalic'; - src: url('Exo2-0-LightItalic.eot?#iefix') format('embedded-opentype'), url('Exo2-0-LightItalic.otf') format('opentype'), url('Exo2-0-LightItalic.woff') format('woff'), url('Exo2-0-LightItalic.ttf') format('truetype'), url('Exo2-0-LightItalic.svg#Exo2.0-LightItalic') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.eot b/public/content/fonts/exo2-0-medium/Exo2-0-Medium.eot deleted file mode 100644 index d23de11..0000000 Binary files a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.eot and /dev/null differ diff --git a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.otf b/public/content/fonts/exo2-0-medium/Exo2-0-Medium.otf deleted file mode 100644 index ac3ab00..0000000 Binary files a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.otf and /dev/null differ diff --git a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.svg b/public/content/fonts/exo2-0-medium/Exo2-0-Medium.svg deleted file mode 100644 index 25c9983..0000000 --- a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.svg +++ /dev/null @@ -1,7021 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:00:42 2015 - By deploy user -Copyright © 2013, Natanael Gama (www.ndiscovered.com . info(at)ndiscovered.com), with Reserved Font Name Exo. This Font Software is licensed under the SIL Open Font License, Version 1.1. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.ttf b/public/content/fonts/exo2-0-medium/Exo2-0-Medium.ttf deleted file mode 100644 index 586f301..0000000 Binary files a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.ttf and /dev/null differ diff --git a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.woff b/public/content/fonts/exo2-0-medium/Exo2-0-Medium.woff deleted file mode 100644 index ef45146..0000000 Binary files a/public/content/fonts/exo2-0-medium/Exo2-0-Medium.woff and /dev/null differ diff --git a/public/content/fonts/exo2-0-medium/font.css b/public/content/fonts/exo2-0-medium/font.css deleted file mode 100644 index e7856b8..0000000 --- a/public/content/fonts/exo2-0-medium/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'Exo2-0-Medium'; - src: url('Exo2-0-Medium.eot?#iefix') format('embedded-opentype'), url('Exo2-0-Medium.otf') format('opentype'), url('Exo2-0-Medium.woff') format('woff'), url('Exo2-0-Medium.ttf') format('truetype'), url('Exo2-0-Medium.svg#Exo2.0-Medium') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.eot b/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.eot deleted file mode 100644 index f5e7d6b..0000000 Binary files a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.eot and /dev/null differ diff --git a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.otf b/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.otf deleted file mode 100644 index 6d78a05..0000000 Binary files a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.otf and /dev/null differ diff --git a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.svg b/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.svg deleted file mode 100644 index 4643bf3..0000000 --- a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.svg +++ /dev/null @@ -1,6953 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:00:16 2015 - By deploy user -Copyright © 2013, Natanael Gama (www.ndiscovered.com . info(at)ndiscovered.com), with Reserved Font Name Exo. This Font Software is licensed under the SIL Open Font License, Version 1.1. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.ttf b/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.ttf deleted file mode 100644 index c845aef..0000000 Binary files a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.ttf and /dev/null differ diff --git a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.woff b/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.woff deleted file mode 100644 index 7c26ae4..0000000 Binary files a/public/content/fonts/exo2-0-mediumitalic/Exo2-0-MediumItalic.woff and /dev/null differ diff --git a/public/content/fonts/exo2-0-mediumitalic/font.css b/public/content/fonts/exo2-0-mediumitalic/font.css deleted file mode 100644 index 100041a..0000000 --- a/public/content/fonts/exo2-0-mediumitalic/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'Exo2-0-MediumItalic'; - src: url('Exo2-0-MediumItalic.eot?#iefix') format('embedded-opentype'), url('Exo2-0-MediumItalic.otf') format('opentype'), url('Exo2-0-MediumItalic.woff') format('woff'), url('Exo2-0-MediumItalic.ttf') format('truetype'), url('Exo2-0-MediumItalic.svg#Exo2.0-MediumItalic') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.eot b/public/content/fonts/exo2-0-regular/Exo2-0-Regular.eot deleted file mode 100644 index b3ca12e..0000000 Binary files a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.eot and /dev/null differ diff --git a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.otf b/public/content/fonts/exo2-0-regular/Exo2-0-Regular.otf deleted file mode 100644 index 4bd82f9..0000000 Binary files a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.otf and /dev/null differ diff --git a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.svg b/public/content/fonts/exo2-0-regular/Exo2-0-Regular.svg deleted file mode 100644 index 19597b0..0000000 --- a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.svg +++ /dev/null @@ -1,7016 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 13:59:45 2015 - By deploy user -Copyright © 2013, Natanael Gama (www.ndiscovered.com . info(at)ndiscovered.com), with Reserved Font Name Exo. This Font Software is licensed under the SIL Open Font License, Version 1.1. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.ttf b/public/content/fonts/exo2-0-regular/Exo2-0-Regular.ttf deleted file mode 100644 index e919da5..0000000 Binary files a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.ttf and /dev/null differ diff --git a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.woff b/public/content/fonts/exo2-0-regular/Exo2-0-Regular.woff deleted file mode 100644 index f427137..0000000 Binary files a/public/content/fonts/exo2-0-regular/Exo2-0-Regular.woff and /dev/null differ diff --git a/public/content/fonts/exo2-0-regular/font.css b/public/content/fonts/exo2-0-regular/font.css deleted file mode 100644 index 03dcf3a..0000000 --- a/public/content/fonts/exo2-0-regular/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'Exo2-0-Regular'; - src: url('Exo2-0-Regular.eot?#iefix') format('embedded-opentype'), url('Exo2-0-Regular.otf') format('opentype'), url('Exo2-0-Regular.woff') format('woff'), url('Exo2-0-Regular.ttf') format('truetype'), url('Exo2-0-Regular.svg#Exo2.0-Regular') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/font-awesome/FontAwesome.otf b/public/content/fonts/font-awesome/FontAwesome.otf deleted file mode 100644 index 681bdd4..0000000 Binary files a/public/content/fonts/font-awesome/FontAwesome.otf and /dev/null differ diff --git a/public/content/fonts/font-awesome/font.css b/public/content/fonts/font-awesome/font.css deleted file mode 100644 index 0171e1f..0000000 --- a/public/content/fonts/font-awesome/font.css +++ /dev/null @@ -1,2026 +0,0 @@ -/*! - * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('fontawesome-webfont.eot?v=4.4.0'); - src: url('fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'), url('fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('fontawesome-webfont.woff?v=4.4.0') format('woff'), url('fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -/* makes the font 33% larger relative to the icon container */ -.fa-lg { - font-size: 1.33333333em; - line-height: 0.75em; - vertical-align: -15%; -} -.fa-2x { - font-size: 2em; -} -.fa-3x { - font-size: 3em; -} -.fa-4x { - font-size: 4em; -} -.fa-5x { - font-size: 5em; -} -.fa-fw { - width: 1.28571429em; - text-align: center; -} -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none; -} -.fa-ul > li { - position: relative; -} -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: 0.14285714em; - text-align: center; -} -.fa-li.fa-lg { - left: -1.85714286em; -} -.fa-border { - padding: .2em .25em .15em; - border: solid 0.08em #eeeeee; - border-radius: .1em; -} -.fa-pull-left { - float: left; -} -.fa-pull-right { - float: right; -} -.fa.fa-pull-left { - margin-right: .3em; -} -.fa.fa-pull-right { - margin-left: .3em; -} -/* Deprecated as of 4.4.0 */ -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.fa.pull-left { - margin-right: .3em; -} -.fa.pull-right { - margin-left: .3em; -} -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -.fa-rotate-90 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} -.fa-rotate-180 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} -.fa-rotate-270 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} -.fa-flip-horizontal { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.fa-flip-vertical { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1); -} -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none; -} -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.fa-stack-1x { - line-height: inherit; -} -.fa-stack-2x { - font-size: 2em; -} -.fa-inverse { - color: #ffffff; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: "\f000"; -} -.fa-music:before { - content: "\f001"; -} -.fa-search:before { - content: "\f002"; -} -.fa-envelope-o:before { - content: "\f003"; -} -.fa-heart:before { - content: "\f004"; -} -.fa-star:before { - content: "\f005"; -} -.fa-star-o:before { - content: "\f006"; -} -.fa-user:before { - content: "\f007"; -} -.fa-film:before { - content: "\f008"; -} -.fa-th-large:before { - content: "\f009"; -} -.fa-th:before { - content: "\f00a"; -} -.fa-th-list:before { - content: "\f00b"; -} -.fa-check:before { - content: "\f00c"; -} -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d"; -} -.fa-search-plus:before { - content: "\f00e"; -} -.fa-search-minus:before { - content: "\f010"; -} -.fa-power-off:before { - content: "\f011"; -} -.fa-signal:before { - content: "\f012"; -} -.fa-gear:before, -.fa-cog:before { - content: "\f013"; -} -.fa-trash-o:before { - content: "\f014"; -} -.fa-home:before { - content: "\f015"; -} -.fa-file-o:before { - content: "\f016"; -} -.fa-clock-o:before { - content: "\f017"; -} -.fa-road:before { - content: "\f018"; -} -.fa-download:before { - content: "\f019"; -} -.fa-arrow-circle-o-down:before { - content: "\f01a"; -} -.fa-arrow-circle-o-up:before { - content: "\f01b"; -} -.fa-inbox:before { - content: "\f01c"; -} -.fa-play-circle-o:before { - content: "\f01d"; -} -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e"; -} -.fa-refresh:before { - content: "\f021"; -} -.fa-list-alt:before { - content: "\f022"; -} -.fa-lock:before { - content: "\f023"; -} -.fa-flag:before { - content: "\f024"; -} -.fa-headphones:before { - content: "\f025"; -} -.fa-volume-off:before { - content: "\f026"; -} -.fa-volume-down:before { - content: "\f027"; -} -.fa-volume-up:before { - content: "\f028"; -} -.fa-qrcode:before { - content: "\f029"; -} -.fa-barcode:before { - content: "\f02a"; -} -.fa-tag:before { - content: "\f02b"; -} -.fa-tags:before { - content: "\f02c"; -} -.fa-book:before { - content: "\f02d"; -} -.fa-bookmark:before { - content: "\f02e"; -} -.fa-print:before { - content: "\f02f"; -} -.fa-camera:before { - content: "\f030"; -} -.fa-font:before { - content: "\f031"; -} -.fa-bold:before { - content: "\f032"; -} -.fa-italic:before { - content: "\f033"; -} -.fa-text-height:before { - content: "\f034"; -} -.fa-text-width:before { - content: "\f035"; -} -.fa-align-left:before { - content: "\f036"; -} -.fa-align-center:before { - content: "\f037"; -} -.fa-align-right:before { - content: "\f038"; -} -.fa-align-justify:before { - content: "\f039"; -} -.fa-list:before { - content: "\f03a"; -} -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b"; -} -.fa-indent:before { - content: "\f03c"; -} -.fa-video-camera:before { - content: "\f03d"; -} -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e"; -} -.fa-pencil:before { - content: "\f040"; -} -.fa-map-marker:before { - content: "\f041"; -} -.fa-adjust:before { - content: "\f042"; -} -.fa-tint:before { - content: "\f043"; -} -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044"; -} -.fa-share-square-o:before { - content: "\f045"; -} -.fa-check-square-o:before { - content: "\f046"; -} -.fa-arrows:before { - content: "\f047"; -} -.fa-step-backward:before { - content: "\f048"; -} -.fa-fast-backward:before { - content: "\f049"; -} -.fa-backward:before { - content: "\f04a"; -} -.fa-play:before { - content: "\f04b"; -} -.fa-pause:before { - content: "\f04c"; -} -.fa-stop:before { - content: "\f04d"; -} -.fa-forward:before { - content: "\f04e"; -} -.fa-fast-forward:before { - content: "\f050"; -} -.fa-step-forward:before { - content: "\f051"; -} -.fa-eject:before { - content: "\f052"; -} -.fa-chevron-left:before { - content: "\f053"; -} -.fa-chevron-right:before { - content: "\f054"; -} -.fa-plus-circle:before { - content: "\f055"; -} -.fa-minus-circle:before { - content: "\f056"; -} -.fa-times-circle:before { - content: "\f057"; -} -.fa-check-circle:before { - content: "\f058"; -} -.fa-question-circle:before { - content: "\f059"; -} -.fa-info-circle:before { - content: "\f05a"; -} -.fa-crosshairs:before { - content: "\f05b"; -} -.fa-times-circle-o:before { - content: "\f05c"; -} -.fa-check-circle-o:before { - content: "\f05d"; -} -.fa-ban:before { - content: "\f05e"; -} -.fa-arrow-left:before { - content: "\f060"; -} -.fa-arrow-right:before { - content: "\f061"; -} -.fa-arrow-up:before { - content: "\f062"; -} -.fa-arrow-down:before { - content: "\f063"; -} -.fa-mail-forward:before, -.fa-share:before { - content: "\f064"; -} -.fa-expand:before { - content: "\f065"; -} -.fa-compress:before { - content: "\f066"; -} -.fa-plus:before { - content: "\f067"; -} -.fa-minus:before { - content: "\f068"; -} -.fa-asterisk:before { - content: "\f069"; -} -.fa-exclamation-circle:before { - content: "\f06a"; -} -.fa-gift:before { - content: "\f06b"; -} -.fa-leaf:before { - content: "\f06c"; -} -.fa-fire:before { - content: "\f06d"; -} -.fa-eye:before { - content: "\f06e"; -} -.fa-eye-slash:before { - content: "\f070"; -} -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071"; -} -.fa-plane:before { - content: "\f072"; -} -.fa-calendar:before { - content: "\f073"; -} -.fa-random:before { - content: "\f074"; -} -.fa-comment:before { - content: "\f075"; -} -.fa-magnet:before { - content: "\f076"; -} -.fa-chevron-up:before { - content: "\f077"; -} -.fa-chevron-down:before { - content: "\f078"; -} -.fa-retweet:before { - content: "\f079"; -} -.fa-shopping-cart:before { - content: "\f07a"; -} -.fa-folder:before { - content: "\f07b"; -} -.fa-folder-open:before { - content: "\f07c"; -} -.fa-arrows-v:before { - content: "\f07d"; -} -.fa-arrows-h:before { - content: "\f07e"; -} -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080"; -} -.fa-twitter-square:before { - content: "\f081"; -} -.fa-facebook-square:before { - content: "\f082"; -} -.fa-camera-retro:before { - content: "\f083"; -} -.fa-key:before { - content: "\f084"; -} -.fa-gears:before, -.fa-cogs:before { - content: "\f085"; -} -.fa-comments:before { - content: "\f086"; -} -.fa-thumbs-o-up:before { - content: "\f087"; -} -.fa-thumbs-o-down:before { - content: "\f088"; -} -.fa-star-half:before { - content: "\f089"; -} -.fa-heart-o:before { - content: "\f08a"; -} -.fa-sign-out:before { - content: "\f08b"; -} -.fa-linkedin-square:before { - content: "\f08c"; -} -.fa-thumb-tack:before { - content: "\f08d"; -} -.fa-external-link:before { - content: "\f08e"; -} -.fa-sign-in:before { - content: "\f090"; -} -.fa-trophy:before { - content: "\f091"; -} -.fa-github-square:before { - content: "\f092"; -} -.fa-upload:before { - content: "\f093"; -} -.fa-lemon-o:before { - content: "\f094"; -} -.fa-phone:before { - content: "\f095"; -} -.fa-square-o:before { - content: "\f096"; -} -.fa-bookmark-o:before { - content: "\f097"; -} -.fa-phone-square:before { - content: "\f098"; -} -.fa-twitter:before { - content: "\f099"; -} -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a"; -} -.fa-github:before { - content: "\f09b"; -} -.fa-unlock:before { - content: "\f09c"; -} -.fa-credit-card:before { - content: "\f09d"; -} -.fa-feed:before, -.fa-rss:before { - content: "\f09e"; -} -.fa-hdd-o:before { - content: "\f0a0"; -} -.fa-bullhorn:before { - content: "\f0a1"; -} -.fa-bell:before { - content: "\f0f3"; -} -.fa-certificate:before { - content: "\f0a3"; -} -.fa-hand-o-right:before { - content: "\f0a4"; -} -.fa-hand-o-left:before { - content: "\f0a5"; -} -.fa-hand-o-up:before { - content: "\f0a6"; -} -.fa-hand-o-down:before { - content: "\f0a7"; -} -.fa-arrow-circle-left:before { - content: "\f0a8"; -} -.fa-arrow-circle-right:before { - content: "\f0a9"; -} -.fa-arrow-circle-up:before { - content: "\f0aa"; -} -.fa-arrow-circle-down:before { - content: "\f0ab"; -} -.fa-globe:before { - content: "\f0ac"; -} -.fa-wrench:before { - content: "\f0ad"; -} -.fa-tasks:before { - content: "\f0ae"; -} -.fa-filter:before { - content: "\f0b0"; -} -.fa-briefcase:before { - content: "\f0b1"; -} -.fa-arrows-alt:before { - content: "\f0b2"; -} -.fa-group:before, -.fa-users:before { - content: "\f0c0"; -} -.fa-chain:before, -.fa-link:before { - content: "\f0c1"; -} -.fa-cloud:before { - content: "\f0c2"; -} -.fa-flask:before { - content: "\f0c3"; -} -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4"; -} -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5"; -} -.fa-paperclip:before { - content: "\f0c6"; -} -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7"; -} -.fa-square:before { - content: "\f0c8"; -} -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9"; -} -.fa-list-ul:before { - content: "\f0ca"; -} -.fa-list-ol:before { - content: "\f0cb"; -} -.fa-strikethrough:before { - content: "\f0cc"; -} -.fa-underline:before { - content: "\f0cd"; -} -.fa-table:before { - content: "\f0ce"; -} -.fa-magic:before { - content: "\f0d0"; -} -.fa-truck:before { - content: "\f0d1"; -} -.fa-pinterest:before { - content: "\f0d2"; -} -.fa-pinterest-square:before { - content: "\f0d3"; -} -.fa-google-plus-square:before { - content: "\f0d4"; -} -.fa-google-plus:before { - content: "\f0d5"; -} -.fa-money:before { - content: "\f0d6"; -} -.fa-caret-down:before { - content: "\f0d7"; -} -.fa-caret-up:before { - content: "\f0d8"; -} -.fa-caret-left:before { - content: "\f0d9"; -} -.fa-caret-right:before { - content: "\f0da"; -} -.fa-columns:before { - content: "\f0db"; -} -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc"; -} -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd"; -} -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de"; -} -.fa-envelope:before { - content: "\f0e0"; -} -.fa-linkedin:before { - content: "\f0e1"; -} -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2"; -} -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3"; -} -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4"; -} -.fa-comment-o:before { - content: "\f0e5"; -} -.fa-comments-o:before { - content: "\f0e6"; -} -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7"; -} -.fa-sitemap:before { - content: "\f0e8"; -} -.fa-umbrella:before { - content: "\f0e9"; -} -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea"; -} -.fa-lightbulb-o:before { - content: "\f0eb"; -} -.fa-exchange:before { - content: "\f0ec"; -} -.fa-cloud-download:before { - content: "\f0ed"; -} -.fa-cloud-upload:before { - content: "\f0ee"; -} -.fa-user-md:before { - content: "\f0f0"; -} -.fa-stethoscope:before { - content: "\f0f1"; -} -.fa-suitcase:before { - content: "\f0f2"; -} -.fa-bell-o:before { - content: "\f0a2"; -} -.fa-coffee:before { - content: "\f0f4"; -} -.fa-cutlery:before { - content: "\f0f5"; -} -.fa-file-text-o:before { - content: "\f0f6"; -} -.fa-building-o:before { - content: "\f0f7"; -} -.fa-hospital-o:before { - content: "\f0f8"; -} -.fa-ambulance:before { - content: "\f0f9"; -} -.fa-medkit:before { - content: "\f0fa"; -} -.fa-fighter-jet:before { - content: "\f0fb"; -} -.fa-beer:before { - content: "\f0fc"; -} -.fa-h-square:before { - content: "\f0fd"; -} -.fa-plus-square:before { - content: "\f0fe"; -} -.fa-angle-double-left:before { - content: "\f100"; -} -.fa-angle-double-right:before { - content: "\f101"; -} -.fa-angle-double-up:before { - content: "\f102"; -} -.fa-angle-double-down:before { - content: "\f103"; -} -.fa-angle-left:before { - content: "\f104"; -} -.fa-angle-right:before { - content: "\f105"; -} -.fa-angle-up:before { - content: "\f106"; -} -.fa-angle-down:before { - content: "\f107"; -} -.fa-desktop:before { - content: "\f108"; -} -.fa-laptop:before { - content: "\f109"; -} -.fa-tablet:before { - content: "\f10a"; -} -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b"; -} -.fa-circle-o:before { - content: "\f10c"; -} -.fa-quote-left:before { - content: "\f10d"; -} -.fa-quote-right:before { - content: "\f10e"; -} -.fa-spinner:before { - content: "\f110"; -} -.fa-circle:before { - content: "\f111"; -} -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112"; -} -.fa-github-alt:before { - content: "\f113"; -} -.fa-folder-o:before { - content: "\f114"; -} -.fa-folder-open-o:before { - content: "\f115"; -} -.fa-smile-o:before { - content: "\f118"; -} -.fa-frown-o:before { - content: "\f119"; -} -.fa-meh-o:before { - content: "\f11a"; -} -.fa-gamepad:before { - content: "\f11b"; -} -.fa-keyboard-o:before { - content: "\f11c"; -} -.fa-flag-o:before { - content: "\f11d"; -} -.fa-flag-checkered:before { - content: "\f11e"; -} -.fa-terminal:before { - content: "\f120"; -} -.fa-code:before { - content: "\f121"; -} -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122"; -} -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123"; -} -.fa-location-arrow:before { - content: "\f124"; -} -.fa-crop:before { - content: "\f125"; -} -.fa-code-fork:before { - content: "\f126"; -} -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127"; -} -.fa-question:before { - content: "\f128"; -} -.fa-info:before { - content: "\f129"; -} -.fa-exclamation:before { - content: "\f12a"; -} -.fa-superscript:before { - content: "\f12b"; -} -.fa-subscript:before { - content: "\f12c"; -} -.fa-eraser:before { - content: "\f12d"; -} -.fa-puzzle-piece:before { - content: "\f12e"; -} -.fa-microphone:before { - content: "\f130"; -} -.fa-microphone-slash:before { - content: "\f131"; -} -.fa-shield:before { - content: "\f132"; -} -.fa-calendar-o:before { - content: "\f133"; -} -.fa-fire-extinguisher:before { - content: "\f134"; -} -.fa-rocket:before { - content: "\f135"; -} -.fa-maxcdn:before { - content: "\f136"; -} -.fa-chevron-circle-left:before { - content: "\f137"; -} -.fa-chevron-circle-right:before { - content: "\f138"; -} -.fa-chevron-circle-up:before { - content: "\f139"; -} -.fa-chevron-circle-down:before { - content: "\f13a"; -} -.fa-html5:before { - content: "\f13b"; -} -.fa-css3:before { - content: "\f13c"; -} -.fa-anchor:before { - content: "\f13d"; -} -.fa-unlock-alt:before { - content: "\f13e"; -} -.fa-bullseye:before { - content: "\f140"; -} -.fa-ellipsis-h:before { - content: "\f141"; -} -.fa-ellipsis-v:before { - content: "\f142"; -} -.fa-rss-square:before { - content: "\f143"; -} -.fa-play-circle:before { - content: "\f144"; -} -.fa-ticket:before { - content: "\f145"; -} -.fa-minus-square:before { - content: "\f146"; -} -.fa-minus-square-o:before { - content: "\f147"; -} -.fa-level-up:before { - content: "\f148"; -} -.fa-level-down:before { - content: "\f149"; -} -.fa-check-square:before { - content: "\f14a"; -} -.fa-pencil-square:before { - content: "\f14b"; -} -.fa-external-link-square:before { - content: "\f14c"; -} -.fa-share-square:before { - content: "\f14d"; -} -.fa-compass:before { - content: "\f14e"; -} -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150"; -} -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151"; -} -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152"; -} -.fa-euro:before, -.fa-eur:before { - content: "\f153"; -} -.fa-gbp:before { - content: "\f154"; -} -.fa-dollar:before, -.fa-usd:before { - content: "\f155"; -} -.fa-rupee:before, -.fa-inr:before { - content: "\f156"; -} -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157"; -} -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158"; -} -.fa-won:before, -.fa-krw:before { - content: "\f159"; -} -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a"; -} -.fa-file:before { - content: "\f15b"; -} -.fa-file-text:before { - content: "\f15c"; -} -.fa-sort-alpha-asc:before { - content: "\f15d"; -} -.fa-sort-alpha-desc:before { - content: "\f15e"; -} -.fa-sort-amount-asc:before { - content: "\f160"; -} -.fa-sort-amount-desc:before { - content: "\f161"; -} -.fa-sort-numeric-asc:before { - content: "\f162"; -} -.fa-sort-numeric-desc:before { - content: "\f163"; -} -.fa-thumbs-up:before { - content: "\f164"; -} -.fa-thumbs-down:before { - content: "\f165"; -} -.fa-youtube-square:before { - content: "\f166"; -} -.fa-youtube:before { - content: "\f167"; -} -.fa-xing:before { - content: "\f168"; -} -.fa-xing-square:before { - content: "\f169"; -} -.fa-youtube-play:before { - content: "\f16a"; -} -.fa-dropbox:before { - content: "\f16b"; -} -.fa-stack-overflow:before { - content: "\f16c"; -} -.fa-instagram:before { - content: "\f16d"; -} -.fa-flickr:before { - content: "\f16e"; -} -.fa-adn:before { - content: "\f170"; -} -.fa-bitbucket:before { - content: "\f171"; -} -.fa-bitbucket-square:before { - content: "\f172"; -} -.fa-tumblr:before { - content: "\f173"; -} -.fa-tumblr-square:before { - content: "\f174"; -} -.fa-long-arrow-down:before { - content: "\f175"; -} -.fa-long-arrow-up:before { - content: "\f176"; -} -.fa-long-arrow-left:before { - content: "\f177"; -} -.fa-long-arrow-right:before { - content: "\f178"; -} -.fa-apple:before { - content: "\f179"; -} -.fa-windows:before { - content: "\f17a"; -} -.fa-android:before { - content: "\f17b"; -} -.fa-linux:before { - content: "\f17c"; -} -.fa-dribbble:before { - content: "\f17d"; -} -.fa-skype:before { - content: "\f17e"; -} -.fa-foursquare:before { - content: "\f180"; -} -.fa-trello:before { - content: "\f181"; -} -.fa-female:before { - content: "\f182"; -} -.fa-male:before { - content: "\f183"; -} -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184"; -} -.fa-sun-o:before { - content: "\f185"; -} -.fa-moon-o:before { - content: "\f186"; -} -.fa-archive:before { - content: "\f187"; -} -.fa-bug:before { - content: "\f188"; -} -.fa-vk:before { - content: "\f189"; -} -.fa-weibo:before { - content: "\f18a"; -} -.fa-renren:before { - content: "\f18b"; -} -.fa-pagelines:before { - content: "\f18c"; -} -.fa-stack-exchange:before { - content: "\f18d"; -} -.fa-arrow-circle-o-right:before { - content: "\f18e"; -} -.fa-arrow-circle-o-left:before { - content: "\f190"; -} -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191"; -} -.fa-dot-circle-o:before { - content: "\f192"; -} -.fa-wheelchair:before { - content: "\f193"; -} -.fa-vimeo-square:before { - content: "\f194"; -} -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195"; -} -.fa-plus-square-o:before { - content: "\f196"; -} -.fa-space-shuttle:before { - content: "\f197"; -} -.fa-slack:before { - content: "\f198"; -} -.fa-envelope-square:before { - content: "\f199"; -} -.fa-wordpress:before { - content: "\f19a"; -} -.fa-openid:before { - content: "\f19b"; -} -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c"; -} -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d"; -} -.fa-yahoo:before { - content: "\f19e"; -} -.fa-google:before { - content: "\f1a0"; -} -.fa-reddit:before { - content: "\f1a1"; -} -.fa-reddit-square:before { - content: "\f1a2"; -} -.fa-stumbleupon-circle:before { - content: "\f1a3"; -} -.fa-stumbleupon:before { - content: "\f1a4"; -} -.fa-delicious:before { - content: "\f1a5"; -} -.fa-digg:before { - content: "\f1a6"; -} -.fa-pied-piper:before { - content: "\f1a7"; -} -.fa-pied-piper-alt:before { - content: "\f1a8"; -} -.fa-drupal:before { - content: "\f1a9"; -} -.fa-joomla:before { - content: "\f1aa"; -} -.fa-language:before { - content: "\f1ab"; -} -.fa-fax:before { - content: "\f1ac"; -} -.fa-building:before { - content: "\f1ad"; -} -.fa-child:before { - content: "\f1ae"; -} -.fa-paw:before { - content: "\f1b0"; -} -.fa-spoon:before { - content: "\f1b1"; -} -.fa-cube:before { - content: "\f1b2"; -} -.fa-cubes:before { - content: "\f1b3"; -} -.fa-behance:before { - content: "\f1b4"; -} -.fa-behance-square:before { - content: "\f1b5"; -} -.fa-steam:before { - content: "\f1b6"; -} -.fa-steam-square:before { - content: "\f1b7"; -} -.fa-recycle:before { - content: "\f1b8"; -} -.fa-automobile:before, -.fa-car:before { - content: "\f1b9"; -} -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba"; -} -.fa-tree:before { - content: "\f1bb"; -} -.fa-spotify:before { - content: "\f1bc"; -} -.fa-deviantart:before { - content: "\f1bd"; -} -.fa-soundcloud:before { - content: "\f1be"; -} -.fa-database:before { - content: "\f1c0"; -} -.fa-file-pdf-o:before { - content: "\f1c1"; -} -.fa-file-word-o:before { - content: "\f1c2"; -} -.fa-file-excel-o:before { - content: "\f1c3"; -} -.fa-file-powerpoint-o:before { - content: "\f1c4"; -} -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5"; -} -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6"; -} -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7"; -} -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8"; -} -.fa-file-code-o:before { - content: "\f1c9"; -} -.fa-vine:before { - content: "\f1ca"; -} -.fa-codepen:before { - content: "\f1cb"; -} -.fa-jsfiddle:before { - content: "\f1cc"; -} -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd"; -} -.fa-circle-o-notch:before { - content: "\f1ce"; -} -.fa-ra:before, -.fa-rebel:before { - content: "\f1d0"; -} -.fa-ge:before, -.fa-empire:before { - content: "\f1d1"; -} -.fa-git-square:before { - content: "\f1d2"; -} -.fa-git:before { - content: "\f1d3"; -} -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4"; -} -.fa-tencent-weibo:before { - content: "\f1d5"; -} -.fa-qq:before { - content: "\f1d6"; -} -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7"; -} -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8"; -} -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9"; -} -.fa-history:before { - content: "\f1da"; -} -.fa-circle-thin:before { - content: "\f1db"; -} -.fa-header:before { - content: "\f1dc"; -} -.fa-paragraph:before { - content: "\f1dd"; -} -.fa-sliders:before { - content: "\f1de"; -} -.fa-share-alt:before { - content: "\f1e0"; -} -.fa-share-alt-square:before { - content: "\f1e1"; -} -.fa-bomb:before { - content: "\f1e2"; -} -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3"; -} -.fa-tty:before { - content: "\f1e4"; -} -.fa-binoculars:before { - content: "\f1e5"; -} -.fa-plug:before { - content: "\f1e6"; -} -.fa-slideshare:before { - content: "\f1e7"; -} -.fa-twitch:before { - content: "\f1e8"; -} -.fa-yelp:before { - content: "\f1e9"; -} -.fa-newspaper-o:before { - content: "\f1ea"; -} -.fa-wifi:before { - content: "\f1eb"; -} -.fa-calculator:before { - content: "\f1ec"; -} -.fa-paypal:before { - content: "\f1ed"; -} -.fa-google-wallet:before { - content: "\f1ee"; -} -.fa-cc-visa:before { - content: "\f1f0"; -} -.fa-cc-mastercard:before { - content: "\f1f1"; -} -.fa-cc-discover:before { - content: "\f1f2"; -} -.fa-cc-amex:before { - content: "\f1f3"; -} -.fa-cc-paypal:before { - content: "\f1f4"; -} -.fa-cc-stripe:before { - content: "\f1f5"; -} -.fa-bell-slash:before { - content: "\f1f6"; -} -.fa-bell-slash-o:before { - content: "\f1f7"; -} -.fa-trash:before { - content: "\f1f8"; -} -.fa-copyright:before { - content: "\f1f9"; -} -.fa-at:before { - content: "\f1fa"; -} -.fa-eyedropper:before { - content: "\f1fb"; -} -.fa-paint-brush:before { - content: "\f1fc"; -} -.fa-birthday-cake:before { - content: "\f1fd"; -} -.fa-area-chart:before { - content: "\f1fe"; -} -.fa-pie-chart:before { - content: "\f200"; -} -.fa-line-chart:before { - content: "\f201"; -} -.fa-lastfm:before { - content: "\f202"; -} -.fa-lastfm-square:before { - content: "\f203"; -} -.fa-toggle-off:before { - content: "\f204"; -} -.fa-toggle-on:before { - content: "\f205"; -} -.fa-bicycle:before { - content: "\f206"; -} -.fa-bus:before { - content: "\f207"; -} -.fa-ioxhost:before { - content: "\f208"; -} -.fa-angellist:before { - content: "\f209"; -} -.fa-cc:before { - content: "\f20a"; -} -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b"; -} -.fa-meanpath:before { - content: "\f20c"; -} -.fa-buysellads:before { - content: "\f20d"; -} -.fa-connectdevelop:before { - content: "\f20e"; -} -.fa-dashcube:before { - content: "\f210"; -} -.fa-forumbee:before { - content: "\f211"; -} -.fa-leanpub:before { - content: "\f212"; -} -.fa-sellsy:before { - content: "\f213"; -} -.fa-shirtsinbulk:before { - content: "\f214"; -} -.fa-simplybuilt:before { - content: "\f215"; -} -.fa-skyatlas:before { - content: "\f216"; -} -.fa-cart-plus:before { - content: "\f217"; -} -.fa-cart-arrow-down:before { - content: "\f218"; -} -.fa-diamond:before { - content: "\f219"; -} -.fa-ship:before { - content: "\f21a"; -} -.fa-user-secret:before { - content: "\f21b"; -} -.fa-motorcycle:before { - content: "\f21c"; -} -.fa-street-view:before { - content: "\f21d"; -} -.fa-heartbeat:before { - content: "\f21e"; -} -.fa-venus:before { - content: "\f221"; -} -.fa-mars:before { - content: "\f222"; -} -.fa-mercury:before { - content: "\f223"; -} -.fa-intersex:before, -.fa-transgender:before { - content: "\f224"; -} -.fa-transgender-alt:before { - content: "\f225"; -} -.fa-venus-double:before { - content: "\f226"; -} -.fa-mars-double:before { - content: "\f227"; -} -.fa-venus-mars:before { - content: "\f228"; -} -.fa-mars-stroke:before { - content: "\f229"; -} -.fa-mars-stroke-v:before { - content: "\f22a"; -} -.fa-mars-stroke-h:before { - content: "\f22b"; -} -.fa-neuter:before { - content: "\f22c"; -} -.fa-genderless:before { - content: "\f22d"; -} -.fa-facebook-official:before { - content: "\f230"; -} -.fa-pinterest-p:before { - content: "\f231"; -} -.fa-whatsapp:before { - content: "\f232"; -} -.fa-server:before { - content: "\f233"; -} -.fa-user-plus:before { - content: "\f234"; -} -.fa-user-times:before { - content: "\f235"; -} -.fa-hotel:before, -.fa-bed:before { - content: "\f236"; -} -.fa-viacoin:before { - content: "\f237"; -} -.fa-train:before { - content: "\f238"; -} -.fa-subway:before { - content: "\f239"; -} -.fa-medium:before { - content: "\f23a"; -} -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b"; -} -.fa-optin-monster:before { - content: "\f23c"; -} -.fa-opencart:before { - content: "\f23d"; -} -.fa-expeditedssl:before { - content: "\f23e"; -} -.fa-battery-4:before, -.fa-battery-full:before { - content: "\f240"; -} -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241"; -} -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242"; -} -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243"; -} -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244"; -} -.fa-mouse-pointer:before { - content: "\f245"; -} -.fa-i-cursor:before { - content: "\f246"; -} -.fa-object-group:before { - content: "\f247"; -} -.fa-object-ungroup:before { - content: "\f248"; -} -.fa-sticky-note:before { - content: "\f249"; -} -.fa-sticky-note-o:before { - content: "\f24a"; -} -.fa-cc-jcb:before { - content: "\f24b"; -} -.fa-cc-diners-club:before { - content: "\f24c"; -} -.fa-clone:before { - content: "\f24d"; -} -.fa-balance-scale:before { - content: "\f24e"; -} -.fa-hourglass-o:before { - content: "\f250"; -} -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251"; -} -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252"; -} -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253"; -} -.fa-hourglass:before { - content: "\f254"; -} -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255"; -} -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256"; -} -.fa-hand-scissors-o:before { - content: "\f257"; -} -.fa-hand-lizard-o:before { - content: "\f258"; -} -.fa-hand-spock-o:before { - content: "\f259"; -} -.fa-hand-pointer-o:before { - content: "\f25a"; -} -.fa-hand-peace-o:before { - content: "\f25b"; -} -.fa-trademark:before { - content: "\f25c"; -} -.fa-registered:before { - content: "\f25d"; -} -.fa-creative-commons:before { - content: "\f25e"; -} -.fa-gg:before { - content: "\f260"; -} -.fa-gg-circle:before { - content: "\f261"; -} -.fa-tripadvisor:before { - content: "\f262"; -} -.fa-odnoklassniki:before { - content: "\f263"; -} -.fa-odnoklassniki-square:before { - content: "\f264"; -} -.fa-get-pocket:before { - content: "\f265"; -} -.fa-wikipedia-w:before { - content: "\f266"; -} -.fa-safari:before { - content: "\f267"; -} -.fa-chrome:before { - content: "\f268"; -} -.fa-firefox:before { - content: "\f269"; -} -.fa-opera:before { - content: "\f26a"; -} -.fa-internet-explorer:before { - content: "\f26b"; -} -.fa-tv:before, -.fa-television:before { - content: "\f26c"; -} -.fa-contao:before { - content: "\f26d"; -} -.fa-500px:before { - content: "\f26e"; -} -.fa-amazon:before { - content: "\f270"; -} -.fa-calendar-plus-o:before { - content: "\f271"; -} -.fa-calendar-minus-o:before { - content: "\f272"; -} -.fa-calendar-times-o:before { - content: "\f273"; -} -.fa-calendar-check-o:before { - content: "\f274"; -} -.fa-industry:before { - content: "\f275"; -} -.fa-map-pin:before { - content: "\f276"; -} -.fa-map-signs:before { - content: "\f277"; -} -.fa-map-o:before { - content: "\f278"; -} -.fa-map:before { - content: "\f279"; -} -.fa-commenting:before { - content: "\f27a"; -} -.fa-commenting-o:before { - content: "\f27b"; -} -.fa-houzz:before { - content: "\f27c"; -} -.fa-vimeo:before { - content: "\f27d"; -} -.fa-black-tie:before { - content: "\f27e"; -} -.fa-fonticons:before { - content: "\f280"; -} diff --git a/public/content/fonts/font-awesome/fontawesome-webfont.eot b/public/content/fonts/font-awesome/fontawesome-webfont.eot deleted file mode 100644 index a30335d..0000000 Binary files a/public/content/fonts/font-awesome/fontawesome-webfont.eot and /dev/null differ diff --git a/public/content/fonts/font-awesome/fontawesome-webfont.svg b/public/content/fonts/font-awesome/fontawesome-webfont.svg deleted file mode 100644 index 6fd19ab..0000000 --- a/public/content/fonts/font-awesome/fontawesome-webfont.svg +++ /dev/null @@ -1,640 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/public/content/fonts/font-awesome/fontawesome-webfont.ttf b/public/content/fonts/font-awesome/fontawesome-webfont.ttf deleted file mode 100644 index d7994e1..0000000 Binary files a/public/content/fonts/font-awesome/fontawesome-webfont.ttf and /dev/null differ diff --git a/public/content/fonts/font-awesome/fontawesome-webfont.woff b/public/content/fonts/font-awesome/fontawesome-webfont.woff deleted file mode 100644 index 6fd4ede..0000000 Binary files a/public/content/fonts/font-awesome/fontawesome-webfont.woff and /dev/null differ diff --git a/public/content/fonts/font-awesome/fontawesome-webfont.woff2 b/public/content/fonts/font-awesome/fontawesome-webfont.woff2 deleted file mode 100644 index 5560193..0000000 Binary files a/public/content/fonts/font-awesome/fontawesome-webfont.woff2 and /dev/null differ diff --git a/public/content/fonts/segoeui-italic/SegoeUI-Italic.eot b/public/content/fonts/segoeui-italic/SegoeUI-Italic.eot deleted file mode 100644 index e508be3..0000000 Binary files a/public/content/fonts/segoeui-italic/SegoeUI-Italic.eot and /dev/null differ diff --git a/public/content/fonts/segoeui-italic/SegoeUI-Italic.svg b/public/content/fonts/segoeui-italic/SegoeUI-Italic.svg deleted file mode 100644 index dbb959c..0000000 --- a/public/content/fonts/segoeui-italic/SegoeUI-Italic.svg +++ /dev/null @@ -1,14641 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:23:23 2015 - By deploy user -© 2014 Microsoft Corporation. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/segoeui-italic/SegoeUI-Italic.ttf b/public/content/fonts/segoeui-italic/SegoeUI-Italic.ttf deleted file mode 100644 index f7a1468..0000000 Binary files a/public/content/fonts/segoeui-italic/SegoeUI-Italic.ttf and /dev/null differ diff --git a/public/content/fonts/segoeui-italic/SegoeUI-Italic.woff b/public/content/fonts/segoeui-italic/SegoeUI-Italic.woff deleted file mode 100644 index bd3dd3f..0000000 Binary files a/public/content/fonts/segoeui-italic/SegoeUI-Italic.woff and /dev/null differ diff --git a/public/content/fonts/segoeui-italic/font.css b/public/content/fonts/segoeui-italic/font.css deleted file mode 100644 index bde5988..0000000 --- a/public/content/fonts/segoeui-italic/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'SegoeUI-Italic'; - src: url('SegoeUI-Italic.eot?#iefix') format('embedded-opentype'), url('SegoeUI-Italic.woff') format('woff'), url('SegoeUI-Italic.ttf') format('truetype'), url('SegoeUI-Italic.svg#SegoeUI-Italic') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/segoeui-light/SegoeUI-Light.eot b/public/content/fonts/segoeui-light/SegoeUI-Light.eot deleted file mode 100644 index ecc5e11..0000000 Binary files a/public/content/fonts/segoeui-light/SegoeUI-Light.eot and /dev/null differ diff --git a/public/content/fonts/segoeui-light/SegoeUI-Light.svg b/public/content/fonts/segoeui-light/SegoeUI-Light.svg deleted file mode 100644 index aa7c31f..0000000 --- a/public/content/fonts/segoeui-light/SegoeUI-Light.svg +++ /dev/null @@ -1,27432 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:22:06 2015 - By deploy user -© 2014 Microsoft Corporation. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/segoeui-light/SegoeUI-Light.ttf b/public/content/fonts/segoeui-light/SegoeUI-Light.ttf deleted file mode 100644 index 99fd3b6..0000000 Binary files a/public/content/fonts/segoeui-light/SegoeUI-Light.ttf and /dev/null differ diff --git a/public/content/fonts/segoeui-light/SegoeUI-Light.woff b/public/content/fonts/segoeui-light/SegoeUI-Light.woff deleted file mode 100644 index 2126700..0000000 Binary files a/public/content/fonts/segoeui-light/SegoeUI-Light.woff and /dev/null differ diff --git a/public/content/fonts/segoeui-light/font.css b/public/content/fonts/segoeui-light/font.css deleted file mode 100644 index d1893b4..0000000 --- a/public/content/fonts/segoeui-light/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'SegoeUI-Light'; - src: url('SegoeUI-Light.eot?#iefix') format('embedded-opentype'), url('SegoeUI-Light.woff') format('woff'), url('SegoeUI-Light.ttf') format('truetype'), url('SegoeUI-Light.svg#SegoeUI-Light') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.eot b/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.eot deleted file mode 100644 index cf49a23..0000000 Binary files a/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.eot and /dev/null differ diff --git a/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.svg b/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.svg deleted file mode 100644 index a685fc9..0000000 --- a/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.svg +++ /dev/null @@ -1,16233 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:22:52 2015 - By deploy user -© 2014 Microsoft Corporation. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.ttf b/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.ttf deleted file mode 100644 index 92196c6..0000000 Binary files a/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.ttf and /dev/null differ diff --git a/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.woff b/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.woff deleted file mode 100644 index c97be6b..0000000 Binary files a/public/content/fonts/segoeui-lightitalic/SegoeUI-LightItalic.woff and /dev/null differ diff --git a/public/content/fonts/segoeui-lightitalic/font.css b/public/content/fonts/segoeui-lightitalic/font.css deleted file mode 100644 index 12ab16b..0000000 --- a/public/content/fonts/segoeui-lightitalic/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'SegoeUI-LightItalic'; - src: url('SegoeUI-LightItalic.eot?#iefix') format('embedded-opentype'), url('SegoeUI-LightItalic.woff') format('woff'), url('SegoeUI-LightItalic.ttf') format('truetype'), url('SegoeUI-LightItalic.svg#SegoeUI-LightItalic') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/fonts/segoeui/SegoeUI.eot b/public/content/fonts/segoeui/SegoeUI.eot deleted file mode 100644 index d81e373..0000000 Binary files a/public/content/fonts/segoeui/SegoeUI.eot and /dev/null differ diff --git a/public/content/fonts/segoeui/SegoeUI.svg b/public/content/fonts/segoeui/SegoeUI.svg deleted file mode 100644 index 31b81c4..0000000 --- a/public/content/fonts/segoeui/SegoeUI.svg +++ /dev/null @@ -1,13622 +0,0 @@ - - - - -Created by FontForge 20090622 at Tue May 26 14:23:58 2015 - By deploy user -© 2014 Microsoft Corporation. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/content/fonts/segoeui/SegoeUI.ttf b/public/content/fonts/segoeui/SegoeUI.ttf deleted file mode 100644 index cac4328..0000000 Binary files a/public/content/fonts/segoeui/SegoeUI.ttf and /dev/null differ diff --git a/public/content/fonts/segoeui/SegoeUI.woff b/public/content/fonts/segoeui/SegoeUI.woff deleted file mode 100644 index 1960596..0000000 Binary files a/public/content/fonts/segoeui/SegoeUI.woff and /dev/null differ diff --git a/public/content/fonts/segoeui/font.css b/public/content/fonts/segoeui/font.css deleted file mode 100644 index 0333023..0000000 --- a/public/content/fonts/segoeui/font.css +++ /dev/null @@ -1,6 +0,0 @@ -@font-face { - font-family: 'SegoeUI'; - src: url('SegoeUI.eot?#iefix') format('embedded-opentype'), url('SegoeUI.woff') format('woff'), url('SegoeUI.ttf') format('truetype'), url('SegoeUI.svg#SegoeUI') format('svg'); - font-weight: normal; - font-style: normal; -} diff --git a/public/content/images/classiclogo.png b/public/content/images/classiclogo.png deleted file mode 100644 index fac556d..0000000 Binary files a/public/content/images/classiclogo.png and /dev/null differ diff --git a/public/content/images/default_header.png b/public/content/images/default_header.png deleted file mode 100644 index 92a7e8c..0000000 Binary files a/public/content/images/default_header.png and /dev/null differ diff --git a/public/content/images/emoticons/amu.png b/public/content/images/emoticons/amu.png deleted file mode 100644 index 3f270c1..0000000 Binary files a/public/content/images/emoticons/amu.png and /dev/null differ diff --git a/public/content/images/emoticons/angrier.png b/public/content/images/emoticons/angrier.png deleted file mode 100644 index ea5ddd4..0000000 Binary files a/public/content/images/emoticons/angrier.png and /dev/null differ diff --git a/public/content/images/emoticons/angriest.png b/public/content/images/emoticons/angriest.png deleted file mode 100644 index fcdd895..0000000 Binary files a/public/content/images/emoticons/angriest.png and /dev/null differ diff --git a/public/content/images/emoticons/angry.gif b/public/content/images/emoticons/angry.gif deleted file mode 100644 index 29db30c..0000000 Binary files a/public/content/images/emoticons/angry.gif and /dev/null differ diff --git a/public/content/images/emoticons/blank.png b/public/content/images/emoticons/blank.png deleted file mode 100644 index 1f675cc..0000000 Binary files a/public/content/images/emoticons/blank.png and /dev/null differ diff --git a/public/content/images/emoticons/childish.png b/public/content/images/emoticons/childish.png deleted file mode 100644 index 0cf54d7..0000000 Binary files a/public/content/images/emoticons/childish.png and /dev/null differ diff --git a/public/content/images/emoticons/congrats.png b/public/content/images/emoticons/congrats.png deleted file mode 100644 index 3e6816b..0000000 Binary files a/public/content/images/emoticons/congrats.png and /dev/null differ diff --git a/public/content/images/emoticons/credits.txt b/public/content/images/emoticons/credits.txt deleted file mode 100644 index cac75d9..0000000 --- a/public/content/images/emoticons/credits.txt +++ /dev/null @@ -1,5 +0,0 @@ -Most of these emotes were made by enchantedtoast. -http://forums.legendsalliance.com/topic/4644-link-emoticons/?b=1#entry -http://www.zeldalegends.net/index.php?n=ZLEmoticons - -The ones not listed on the last mentioned link (heh) are Flashii community contributions based on the original set by enchantedtoast. diff --git a/public/content/images/emoticons/crying.gif b/public/content/images/emoticons/crying.gif deleted file mode 100644 index e23cd93..0000000 Binary files a/public/content/images/emoticons/crying.gif and /dev/null differ diff --git a/public/content/images/emoticons/dizzy.gif b/public/content/images/emoticons/dizzy.gif deleted file mode 100644 index fc3bd19..0000000 Binary files a/public/content/images/emoticons/dizzy.gif and /dev/null differ diff --git a/public/content/images/emoticons/eat.gif b/public/content/images/emoticons/eat.gif deleted file mode 100644 index 1303d0d..0000000 Binary files a/public/content/images/emoticons/eat.gif and /dev/null differ diff --git a/public/content/images/emoticons/evil.png b/public/content/images/emoticons/evil.png deleted file mode 100644 index e948ec6..0000000 Binary files a/public/content/images/emoticons/evil.png and /dev/null differ diff --git a/public/content/images/emoticons/extreme.png b/public/content/images/emoticons/extreme.png deleted file mode 100644 index 2c02c6d..0000000 Binary files a/public/content/images/emoticons/extreme.png and /dev/null differ diff --git a/public/content/images/emoticons/glare.gif b/public/content/images/emoticons/glare.gif deleted file mode 100644 index e8cf0ec..0000000 Binary files a/public/content/images/emoticons/glare.gif and /dev/null differ diff --git a/public/content/images/emoticons/happy.gif b/public/content/images/emoticons/happy.gif deleted file mode 100644 index 541c287..0000000 Binary files a/public/content/images/emoticons/happy.gif and /dev/null differ diff --git a/public/content/images/emoticons/horror.gif b/public/content/images/emoticons/horror.gif deleted file mode 100644 index 6d77da1..0000000 Binary files a/public/content/images/emoticons/horror.gif and /dev/null differ diff --git a/public/content/images/emoticons/huh.png b/public/content/images/emoticons/huh.png deleted file mode 100644 index 57ebee0..0000000 Binary files a/public/content/images/emoticons/huh.png and /dev/null differ diff --git a/public/content/images/emoticons/idea.png b/public/content/images/emoticons/idea.png deleted file mode 100644 index cd2031e..0000000 Binary files a/public/content/images/emoticons/idea.png and /dev/null differ diff --git a/public/content/images/emoticons/jew.png b/public/content/images/emoticons/jew.png deleted file mode 100644 index 57629b1..0000000 Binary files a/public/content/images/emoticons/jew.png and /dev/null differ diff --git a/public/content/images/emoticons/kiss.gif b/public/content/images/emoticons/kiss.gif deleted file mode 100644 index cb9b953..0000000 Binary files a/public/content/images/emoticons/kiss.gif and /dev/null differ diff --git a/public/content/images/emoticons/lmao.gif b/public/content/images/emoticons/lmao.gif deleted file mode 100644 index e812dca..0000000 Binary files a/public/content/images/emoticons/lmao.gif and /dev/null differ diff --git a/public/content/images/emoticons/lol.gif b/public/content/images/emoticons/lol.gif deleted file mode 100644 index 86383bf..0000000 Binary files a/public/content/images/emoticons/lol.gif and /dev/null differ diff --git a/public/content/images/emoticons/love.png b/public/content/images/emoticons/love.png deleted file mode 100644 index afd9b77..0000000 Binary files a/public/content/images/emoticons/love.png and /dev/null differ diff --git a/public/content/images/emoticons/meow.png b/public/content/images/emoticons/meow.png deleted file mode 100644 index 06bc9c0..0000000 Binary files a/public/content/images/emoticons/meow.png and /dev/null differ diff --git a/public/content/images/emoticons/omg.gif b/public/content/images/emoticons/omg.gif deleted file mode 100644 index 5d5a9d4..0000000 Binary files a/public/content/images/emoticons/omg.gif and /dev/null differ diff --git a/public/content/images/emoticons/ouch.gif b/public/content/images/emoticons/ouch.gif deleted file mode 100644 index 86683f8..0000000 Binary files a/public/content/images/emoticons/ouch.gif and /dev/null differ diff --git a/public/content/images/emoticons/puke.gif b/public/content/images/emoticons/puke.gif deleted file mode 100644 index 55f140b..0000000 Binary files a/public/content/images/emoticons/puke.gif and /dev/null differ diff --git a/public/content/images/emoticons/ruse.png b/public/content/images/emoticons/ruse.png deleted file mode 100644 index f3bbefa..0000000 Binary files a/public/content/images/emoticons/ruse.png and /dev/null differ diff --git a/public/content/images/emoticons/sad.png b/public/content/images/emoticons/sad.png deleted file mode 100644 index 74f020e..0000000 Binary files a/public/content/images/emoticons/sad.png and /dev/null differ diff --git a/public/content/images/emoticons/sigh.gif b/public/content/images/emoticons/sigh.gif deleted file mode 100644 index 119c933..0000000 Binary files a/public/content/images/emoticons/sigh.gif and /dev/null differ diff --git a/public/content/images/emoticons/smug.png b/public/content/images/emoticons/smug.png deleted file mode 100644 index 2a169a6..0000000 Binary files a/public/content/images/emoticons/smug.png and /dev/null differ diff --git a/public/content/images/emoticons/suspicious.gif b/public/content/images/emoticons/suspicious.gif deleted file mode 100644 index 23c79c4..0000000 Binary files a/public/content/images/emoticons/suspicious.gif and /dev/null differ diff --git a/public/content/images/emoticons/sweat.gif b/public/content/images/emoticons/sweat.gif deleted file mode 100644 index df106d4..0000000 Binary files a/public/content/images/emoticons/sweat.gif and /dev/null differ diff --git a/public/content/images/emoticons/tired.gif b/public/content/images/emoticons/tired.gif deleted file mode 100644 index cd902cd..0000000 Binary files a/public/content/images/emoticons/tired.gif and /dev/null differ diff --git a/public/content/images/emoticons/vhappy.gif b/public/content/images/emoticons/vhappy.gif deleted file mode 100644 index 4d9541a..0000000 Binary files a/public/content/images/emoticons/vhappy.gif and /dev/null differ diff --git a/public/content/images/emoticons/what.png b/public/content/images/emoticons/what.png deleted file mode 100644 index f2bdeb6..0000000 Binary files a/public/content/images/emoticons/what.png and /dev/null differ diff --git a/public/content/images/emoticons/winxp.png b/public/content/images/emoticons/winxp.png deleted file mode 100644 index 3d40f36..0000000 Binary files a/public/content/images/emoticons/winxp.png and /dev/null differ diff --git a/public/content/images/emoticons/wtf.gif b/public/content/images/emoticons/wtf.gif deleted file mode 100644 index 5a56557..0000000 Binary files a/public/content/images/emoticons/wtf.gif and /dev/null differ diff --git a/public/content/images/emoticons/zzz.gif b/public/content/images/emoticons/zzz.gif deleted file mode 100644 index 7ee061d..0000000 Binary files a/public/content/images/emoticons/zzz.gif and /dev/null differ diff --git a/public/content/images/icons/android-icon-144x144.png b/public/content/images/icons/android-icon-144x144.png deleted file mode 100644 index a2b7195..0000000 Binary files a/public/content/images/icons/android-icon-144x144.png and /dev/null differ diff --git a/public/content/images/icons/android-icon-192x192.png b/public/content/images/icons/android-icon-192x192.png deleted file mode 100644 index 8b4a67b..0000000 Binary files a/public/content/images/icons/android-icon-192x192.png and /dev/null differ diff --git a/public/content/images/icons/android-icon-36x36.png b/public/content/images/icons/android-icon-36x36.png deleted file mode 100644 index 961da3b..0000000 Binary files a/public/content/images/icons/android-icon-36x36.png and /dev/null differ diff --git a/public/content/images/icons/android-icon-48x48.png b/public/content/images/icons/android-icon-48x48.png deleted file mode 100644 index 0aa80d2..0000000 Binary files a/public/content/images/icons/android-icon-48x48.png and /dev/null differ diff --git a/public/content/images/icons/android-icon-72x72.png b/public/content/images/icons/android-icon-72x72.png deleted file mode 100644 index 590fe43..0000000 Binary files a/public/content/images/icons/android-icon-72x72.png and /dev/null differ diff --git a/public/content/images/icons/android-icon-96x96.png b/public/content/images/icons/android-icon-96x96.png deleted file mode 100644 index 6884fd7..0000000 Binary files a/public/content/images/icons/android-icon-96x96.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-114x114.png b/public/content/images/icons/apple-icon-114x114.png deleted file mode 100644 index 23901bd..0000000 Binary files a/public/content/images/icons/apple-icon-114x114.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-120x120.png b/public/content/images/icons/apple-icon-120x120.png deleted file mode 100644 index 8569e0a..0000000 Binary files a/public/content/images/icons/apple-icon-120x120.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-144x144.png b/public/content/images/icons/apple-icon-144x144.png deleted file mode 100644 index a2b7195..0000000 Binary files a/public/content/images/icons/apple-icon-144x144.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-152x152.png b/public/content/images/icons/apple-icon-152x152.png deleted file mode 100644 index ece587f..0000000 Binary files a/public/content/images/icons/apple-icon-152x152.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-180x180.png b/public/content/images/icons/apple-icon-180x180.png deleted file mode 100644 index 8cee4da..0000000 Binary files a/public/content/images/icons/apple-icon-180x180.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-57x57.png b/public/content/images/icons/apple-icon-57x57.png deleted file mode 100644 index 954914b..0000000 Binary files a/public/content/images/icons/apple-icon-57x57.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-60x60.png b/public/content/images/icons/apple-icon-60x60.png deleted file mode 100644 index d513902..0000000 Binary files a/public/content/images/icons/apple-icon-60x60.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-72x72.png b/public/content/images/icons/apple-icon-72x72.png deleted file mode 100644 index 590fe43..0000000 Binary files a/public/content/images/icons/apple-icon-72x72.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-76x76.png b/public/content/images/icons/apple-icon-76x76.png deleted file mode 100644 index 0e7bb4c..0000000 Binary files a/public/content/images/icons/apple-icon-76x76.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon-precomposed.png b/public/content/images/icons/apple-icon-precomposed.png deleted file mode 100644 index 6c4ab30..0000000 Binary files a/public/content/images/icons/apple-icon-precomposed.png and /dev/null differ diff --git a/public/content/images/icons/apple-icon.png b/public/content/images/icons/apple-icon.png deleted file mode 100644 index 6c4ab30..0000000 Binary files a/public/content/images/icons/apple-icon.png and /dev/null differ diff --git a/public/content/images/icons/favicon-16x16.png b/public/content/images/icons/favicon-16x16.png deleted file mode 100644 index c33621d..0000000 Binary files a/public/content/images/icons/favicon-16x16.png and /dev/null differ diff --git a/public/content/images/icons/favicon-32x32.png b/public/content/images/icons/favicon-32x32.png deleted file mode 100644 index 78b7f00..0000000 Binary files a/public/content/images/icons/favicon-32x32.png and /dev/null differ diff --git a/public/content/images/icons/favicon-96x96.png b/public/content/images/icons/favicon-96x96.png deleted file mode 100644 index 6884fd7..0000000 Binary files a/public/content/images/icons/favicon-96x96.png and /dev/null differ diff --git a/public/content/images/icons/ms-icon-144x144.png b/public/content/images/icons/ms-icon-144x144.png deleted file mode 100644 index a2b7195..0000000 Binary files a/public/content/images/icons/ms-icon-144x144.png and /dev/null differ diff --git a/public/content/images/icons/ms-icon-150x150.png b/public/content/images/icons/ms-icon-150x150.png deleted file mode 100644 index 3e2fa1c..0000000 Binary files a/public/content/images/icons/ms-icon-150x150.png and /dev/null differ diff --git a/public/content/images/icons/ms-icon-310x310.png b/public/content/images/icons/ms-icon-310x310.png deleted file mode 100644 index aa63c25..0000000 Binary files a/public/content/images/icons/ms-icon-310x310.png and /dev/null differ diff --git a/public/content/images/icons/ms-icon-70x70.png b/public/content/images/icons/ms-icon-70x70.png deleted file mode 100644 index b3d6039..0000000 Binary files a/public/content/images/icons/ms-icon-70x70.png and /dev/null differ diff --git a/public/content/images/imouto.png b/public/content/images/imouto.png deleted file mode 100644 index 658198f..0000000 Binary files a/public/content/images/imouto.png and /dev/null differ diff --git a/public/content/images/me-tan-1.png b/public/content/images/me-tan-1.png deleted file mode 100644 index cf0c010..0000000 Binary files a/public/content/images/me-tan-1.png and /dev/null differ diff --git a/public/content/images/me-tan-2.png b/public/content/images/me-tan-2.png deleted file mode 100644 index 8e71325..0000000 Binary files a/public/content/images/me-tan-2.png and /dev/null differ diff --git a/public/content/images/pclouds.jpg b/public/content/images/pclouds.jpg deleted file mode 100644 index 0ef9f98..0000000 Binary files a/public/content/images/pclouds.jpg and /dev/null differ diff --git a/public/content/scripts/dynload.js b/public/content/scripts/dynload.js deleted file mode 100644 index 37826d4..0000000 --- a/public/content/scripts/dynload.js +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Dynamic load project - */ -var DynLoad = (function () { - function DynLoad() { - } - // Add the hooks - DynLoad.init = function () { - if (this.active) { - return; - } - else { - this.active = true; - } - // Add an event listener to the document - document.addEventListener("click", function (e) { - // Check if a href attribute is set - if (e.target['href']) { - // Prevent the default action - e.preventDefault(); - // Create a new ajax object - var loader = new AJAX(); - // Set the url - loader.setUrl(e.target['href']); - // Add callbacks - loader.addCallback(200, function () { - var doc = (new DOMParser()).parseFromString(loader.response(), "text/html"); - history.pushState(null, null, e.target['href']); - document.head.innerHTML = doc.head.innerHTML; - document.getElementById("contentwrapper").innerHTML = doc.getElementById("contentwrapper").innerHTML; - var evt = document.createEvent('Event'); - evt.initEvent('load', false, false); - window.dispatchEvent(evt); - }); - // Send request - loader.start(HTTPMethods.GET); - } - }); - }; - // Is active - DynLoad.active = false; - return DynLoad; -})(); diff --git a/public/content/scripts/dynload.ts b/public/content/scripts/dynload.ts deleted file mode 100644 index ad48e07..0000000 --- a/public/content/scripts/dynload.ts +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Dynamic load project - */ - -class DynLoad { - // Is active - public static active: boolean = false; - - // Add the hooks - public static init(): void { - if (this.active) { - return; - } else { - this.active = true; - } - - // Add an event listener to the document - document.addEventListener("click", (e) => { - // Check if a href attribute is set - if (e.target['href']) { - // Prevent the default action - e.preventDefault(); - - // Create a new ajax object - var loader: AJAX = new AJAX(); - - // Set the url - loader.setUrl(e.target['href']); - - // Add callbacks - loader.addCallback(200, () => { - var doc = (new DOMParser()).parseFromString(loader.response(), "text/html"); - history.pushState(null, null, e.target['href']); - document.head.innerHTML = doc.head.innerHTML; - document.getElementById("contentwrapper").innerHTML = doc.getElementById("contentwrapper").innerHTML; - var evt = document.createEvent('Event'); - evt.initEvent('load', false, false); - window.dispatchEvent(evt); - }); - - // Send request - loader.start(HTTPMethods.GET); - } - }); - } -} diff --git a/public/manifest.json b/public/manifest.json deleted file mode 100644 index 6919774..0000000 --- a/public/manifest.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "Sakura", - "icons": [ - { - "src": "\/content\/images\/icons\/android-icon-36x36.png", - "sizes": "36x36", - "type": "image\/png", - "density": "0.75" - }, - { - "src": "\/content\/images\/icons\/android-icon-48x48.png", - "sizes": "48x48", - "type": "image\/png", - "density": "1.0" - }, - { - "src": "\/content\/images\/icons\/android-icon-72x72.png", - "sizes": "72x72", - "type": "image\/png", - "density": "1.5" - }, - { - "src": "\/content\/images\/icons\/android-icon-96x96.png", - "sizes": "96x96", - "type": "image\/png", - "density": "2.0" - }, - { - "src": "\/content\/images\/icons\/android-icon-144x144.png", - "sizes": "144x144", - "type": "image\/png", - "density": "3.0" - }, - { - "src": "\/content\/images\/icons\/android-icon-192x192.png", - "sizes": "192x192", - "type": "image\/png", - "density": "4.0" - } - ] -} diff --git a/templates/htmlEmail.html b/templates/htmlEmail.html deleted file mode 100644 index 134d0fe..0000000 --- a/templates/htmlEmail.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - -
- {{ sitename }} -
- {{ contents }} -
- This message has been sent to the email address associated with your {{ sitename }} account. -
- - diff --git a/templates/mio/elements/newsPost.twig b/templates/mio/elements/newsPost.twig deleted file mode 100644 index 07381b9..0000000 --- a/templates/mio/elements/newsPost.twig +++ /dev/null @@ -1,5 +0,0 @@ -{% if not (viewPost and postExists) %}

{{ post.title }} by {{ post.poster.username }} - {{ post.date|date(config('date_format')) }}# @

{% endif %} -
- {{ post.content_parsed|raw }} -
-
diff --git a/templates/mio/global/footer.twig b/templates/mio/global/footer.twig deleted file mode 100644 index 2fb00e3..0000000 --- a/templates/mio/global/footer.twig +++ /dev/null @@ -1,17 +0,0 @@ - - -
- - diff --git a/templates/mio/global/header.twig b/templates/mio/global/header.twig deleted file mode 100644 index 548faeb..0000000 --- a/templates/mio/global/header.twig +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - {{ page.title }} - - - - {% if page.redirect %} - - {% endif %} - - - - - - -
- Login | - Register -
- - - -
diff --git a/templates/mio/main/index.twig b/templates/mio/main/index.twig deleted file mode 100644 index 3b16b7b..0000000 --- a/templates/mio/main/index.twig +++ /dev/null @@ -1,36 +0,0 @@ -{% include 'global/header.twig' %} -
-

Welcome!

-
- Welcome to Flashii! This is a site for a bunch of friends to hang out, nothing special.
Anyone is pretty much welcome to register so why not have a go? -
-
- Register! - Login -
-
-

Latest News Posts_

-
- {% for post in news.getPosts(0, newsCount) %} - {% include 'elements/newsPost.twig' %} - {% endfor %} -
-
-
-

Statistics_

-
- - - - - - - - - - - -
We have {{ stats.userCount }} registered users.Our newest member is {{ stats.newestUser.username }}.
It has been {{ stats.lastRegDate }} since the last user registered.{{ stats.chatOnline }} in chat right now.
-
-
-{% include 'global/footer.twig' %} diff --git a/templates/misaki/elements/newsPost.twig b/templates/misaki/elements/newsPost.twig deleted file mode 100644 index 8f4792f..0000000 --- a/templates/misaki/elements/newsPost.twig +++ /dev/null @@ -1,19 +0,0 @@ -
-
- {{ post.news_title }} -
-
{{ post.news_timestamp|date(config('date_format')) }}
- -
-
-
-
-
- {{ post.news_poster.username }} -
-
- {{ post.news_content_parsed|raw }} -
-
-
-
diff --git a/templates/misaki/elements/statsHeader.twig b/templates/misaki/elements/statsHeader.twig deleted file mode 100644 index 1a92a63..0000000 --- a/templates/misaki/elements/statsHeader.twig +++ /dev/null @@ -1,32 +0,0 @@ -
-
-
- - {{ stats.userCount }} -
-
-
-
- - {{ stats.onlineUsers|length }} -
-
- -
-
- - {{ stats.lastRegDate }} -
-
-
-
- - {{ stats.topicCount }}/ {{ stats.postCount }} -
-
-
diff --git a/templates/misaki/forum/forum.twig b/templates/misaki/forum/forum.twig deleted file mode 100644 index d2abae9..0000000 --- a/templates/misaki/forum/forum.twig +++ /dev/null @@ -1,19 +0,0 @@ -
- {% for forum in forum.forums %} - {% if forum.type == 1 %} - {% if forum.forums|length %} -
-
-
{% if forum.type != 1 %}Subforums{% else %}{{ forum.name }}{% endif %}
-
{{ forum.description }}
-
- {% for forum in forum.forums %} - {% include 'forum/forumEntry.twig' %} - {% endfor %} -
- {% endif %} - {% else %} - {% include 'forum/forumEntry.twig' %} - {% endif %} - {% endfor %} -
diff --git a/templates/misaki/forum/forumEntry.twig b/templates/misaki/forum/forumEntry.twig deleted file mode 100644 index f391d58..0000000 --- a/templates/misaki/forum/forumEntry.twig +++ /dev/null @@ -1,35 +0,0 @@ -
- -
-
-
- {{ forum.name }} -
- {{ forum.description }} - {% if forum.forums|length %} - - {% endif %} -
-
- {% if forum.forum_type != 2 %} -
-
{{ forum.threadCount }}
-
/
-
{{ forum.postCount }}
-
-
-
- {% if forum.lastPost.id %} - {{ forum.lastPost.subject|slice(0, 25) }}{% if forum.lastPost.subject|length > 25 %}...{% endif %}
- {{ forum.lastPost.timeElapsed }} by {% if forum.lastPost.poster.id %}{{ forum.lastPost.poster.username }}{% else %}[deleted user]{% endif %} - {% else %} - There are no posts in this forum. - {% endif %} -
-
- {% endif %} -
diff --git a/templates/misaki/forum/index.twig b/templates/misaki/forum/index.twig deleted file mode 100644 index 7d33466..0000000 --- a/templates/misaki/forum/index.twig +++ /dev/null @@ -1,10 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Forum Listing{% endblock %} - -{% block content %} -
- {% include 'elements/statsHeader.twig' %} - {% include 'forum/forum.twig' %} -
-{% endblock %} diff --git a/templates/misaki/forum/posting.twig b/templates/misaki/forum/posting.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/forum/posting.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/forum/topicEntry.twig b/templates/misaki/forum/topicEntry.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/misaki/forum/viewforum.twig b/templates/misaki/forum/viewforum.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/forum/viewforum.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/forum/viewtopic.twig b/templates/misaki/forum/viewtopic.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/forum/viewtopic.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/global/information.twig b/templates/misaki/global/information.twig deleted file mode 100644 index 4c99e56..0000000 --- a/templates/misaki/global/information.twig +++ /dev/null @@ -1,11 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Information{% endblock %} - -{% block content %} -
-

Information

- {{ page.message }} - {% if page.redirect %}
Click here if you aren't being redirected.{% endif %} -
-{% endblock %} diff --git a/templates/misaki/global/master.twig b/templates/misaki/global/master.twig deleted file mode 100644 index 14156da..0000000 --- a/templates/misaki/global/master.twig +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - {% block title %}{{ config('sitename') }}{% endblock %} - - - - - - -{% if page.redirect %} - -{% endif %} - - - - - - - - - - - - - - -{{ block('meta') }} - - -{{ block('css') }} - - - - -{{ block('js') }} - - -
- -
-
-
- {% if php.self == '/profile.php' ? profile.userData.profileBackground : (user.permission(constant('Sakura\\Perms\\Site::CHANGE_BACKGROUND')) and user.optionFields.profileBackgroundSiteWide and user.userData.profileBackground) %} -
- {% endif %} - - - {% if config('sitelogo') or config('header_announcement_image') %} - - {% endif %} - -
-{% block content %} -
-
This template doesn't exist (yet)!
Switch back to Yuuno via the User Settings to view this page!
-
-{% endblock %} -
-
- -
- - diff --git a/templates/misaki/global/notfound.twig b/templates/misaki/global/notfound.twig deleted file mode 100644 index 3f0f46b..0000000 --- a/templates/misaki/global/notfound.twig +++ /dev/null @@ -1,47 +0,0 @@ - - - - - Cannot find page - - - -
-

- - The page cannot be found -

-

- The page you are looking for might have been removed, had its - name changed, or is temporarily unavailable. -

-
-

- Please try the following: -

-
    -
  • - If you typed the page address in the Address bar, make - sure that it is spelled correctly. -
  • -
  • - Open the flashii.net - home page, and then look for links to the information you want. -
  • -
  • - Click the Back - button to try another link. -
  • -
  • - Click Search - to look for information on the Internet. -
  • -
-

- HTTP 404 - File not found -
- Internet Explorer -

-
- - diff --git a/templates/misaki/global/restricted.twig b/templates/misaki/global/restricted.twig deleted file mode 100644 index c76dbc9..0000000 --- a/templates/misaki/global/restricted.twig +++ /dev/null @@ -1,10 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Restricted{% endblock %} - -{% block content %} -
-

You aren't allowed to view this page!

- Please make sure that you're logged in and are supposed to be able to access this page. If you think this was a mistake please contact a staff member. -
-{% endblock %} diff --git a/templates/misaki/group/index.twig b/templates/misaki/group/index.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/group/index.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/authenticate.twig b/templates/misaki/main/authenticate.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/authenticate.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/banned.twig b/templates/misaki/main/banned.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/banned.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/faq.twig b/templates/misaki/main/faq.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/faq.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/forgotpassword.twig b/templates/misaki/main/forgotpassword.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/forgotpassword.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/index.twig b/templates/misaki/main/index.twig deleted file mode 100644 index 1a47807..0000000 --- a/templates/misaki/main/index.twig +++ /dev/null @@ -1,21 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block content %} -
- {% include 'elements/statsHeader.twig' %} -
- {% if stats.onlineUsers %} - {% for amount,onlineUser in stats.onlineUsers %} - {{ onlineUser.username }} - {% endfor %} - {% else %} -
There were no online users in the past 5 minutes.
- {% endif %} -
-
- {% for post in news.getPosts(0, newsCount) %} - {% include 'elements/newsPost.twig' %} - {% endfor %} -
-
-{% endblock %} diff --git a/templates/misaki/main/infopage.twig b/templates/misaki/main/infopage.twig deleted file mode 100644 index ba9bbc1..0000000 --- a/templates/misaki/main/infopage.twig +++ /dev/null @@ -1,11 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}{% if page.title %}{{ page.title }}{% else %}Not found!{% endif %}{% endblock %} - -{% block content %} -
-
- {{ page.content|raw }} -
-
-{% endblock %} diff --git a/templates/misaki/main/memberlist.twig b/templates/misaki/main/memberlist.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/memberlist.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/news.twig b/templates/misaki/main/news.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/news.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/premiumcomplete.twig b/templates/misaki/main/premiumcomplete.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/premiumcomplete.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/profile.twig b/templates/misaki/main/profile.twig deleted file mode 100644 index cd6d1dd..0000000 --- a/templates/misaki/main/profile.twig +++ /dev/null @@ -1,224 +0,0 @@ -{% extends 'global/master.twig' %} - -{% set profileHidden = profile.permission(constant('Sakura\\Perms\\Site::DEACTIVATED')) or (profile.permission(constant('Sakura\\Perms\\Site::RESTRICTED')) and (user.id != profile.id and not user.permission(constant('Sakura\\Perms\\Manage::USE_MANAGE'), constant('Sakura\\Perms::MANAGE')))) %} - -{% set noUserpage = profile.userPage|length < 1 %} - -{% set profileView = profileHidden ? 'hidden' : (noUserpage and profileView == 'index' ? 'comments' : profileView) %} - -{% block title %}{% if profileHidden %}User not found!{% else %}Profile of {{ profile.username }}{% endif %}{% endblock %} - -{% block css %} - -{% endblock %} - -{% block js %} - -{% endblock %} - -{% block content %} -
-
-
{{ profile.username }}'s Avatar
-
-
-
- {% if profileHidden %}Unknown user{% else %}{{ profile.username }}{% endif %} -
-
- {% if profileHidden %}The requested user does not exist!{% else %}{{ profile.userTitle }}{% endif %} -
-
-
- {% if not profileHidden %} -
Joined {{ profile.elapsed.joined }}
-
{% if profile.dates.lastOnline < 1 %}User hasn't logged in yet.{% else %}Last Active {{ profile.elapsed.lastOnline }}{% endif %}
- {% endif %} -
-
-
-
-
- {% if not profileHidden %} - {% if (profile.checkPremium[0] or profile.permission(constant('Sakura\\Perms\\Manage::USE_MANAGE'), constant('Sakura\\Perms::MANAGE'))) %} -
-
-
    - {% if profile.checkPremium[0] %} -
  • Tenshi
  • - {% endif %} - {% if profile.permission(constant('Sakura\\Perms\\Manage::USE_MANAGE'), constant('Sakura\\Perms::MANAGE')) %} -
  • Staff
  • - {% endif %} - {% if false %} -
  • Developer
  • - {% endif %} - {% if false %} -
  • Alumnii
  • - {% endif %} -
-
-
- {% endif %} - {% if user.isActive %} -
-
- -
-
- {% endif %} -
-
- {% if user.isActive %} - {% if profile.profileFields %} - {% for name,field in profile.profileFields %} -
-
{{ field.name }}
- -
-
- {% endfor %} - {% else %} -
-
-
This user has not set any links yet.
-
- {% endif %} - {% else %} -
-
-
Log in to view the full profile.
-
- {% endif %} -
-
- {% endif %} -
-
-
Account Standing
- {% if profileHidden %} -
Unknown
- {% elseif profile.permission(constant('Sakura\\Perms\\Site::RESTRICTED')) %} -

Restricted

- {% else %} - {% if profile.getWarnings %} -
Bad
- {% else %} -
Good
- {% endif %} - {% endif %} - {% if profile.getWarnings %} -
This user has {{ profile.getWarnings|length }} warning{% if profile.getWarnings|length != 1 %}s{% endif %}!
-
After 10 warnings a user may be permanently banned.
- {% endif %} -
-
-
-
- {% if not profileHidden %} -
- {% if profileView != (noUserpage ? 'comments' : 'index') %} -
- -
-
-
- {% endif %} - {% if profileView != 'friends' %} - - {% endif %} - {% if profileView != 'groups' %} - - {% endif %} - {% if profileView != 'comments' %} - - {% endif %} - {% if profileView != 'threads' %} - - {% endif %} - {% if profileView != 'posts' %} - - {% endif %} -
- {% endif %} -
-
- {% include 'profile/' ~ profileView ~ '.twig' %} -
-
-
-
-
-{% endblock %} diff --git a/templates/misaki/main/report.twig b/templates/misaki/main/report.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/report.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/search.twig b/templates/misaki/main/search.twig deleted file mode 100644 index 0ac16a5..0000000 --- a/templates/misaki/main/search.twig +++ /dev/null @@ -1,22 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Search{% endblock %} - -{% block content %} -
-

search

- - - -
-{% endblock %} diff --git a/templates/misaki/main/settings.twig b/templates/misaki/main/settings.twig deleted file mode 100644 index fa5e170..0000000 --- a/templates/misaki/main/settings.twig +++ /dev/null @@ -1,17 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}{{ page.category }} / {{ page.mode }}{% endblock %} - -{% block content %} -
-

- {{ page.category }}
{{ page.mode }} -

-

- {% for descline in page.description %} - {{ include(template_from_string(descline)) }} - {% endfor %} -

-
- {% include 'settings/' ~ current ~ '.twig' %} -{% endblock %} diff --git a/templates/misaki/main/support.twig b/templates/misaki/main/support.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/support.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/main/supporttracker.twig b/templates/misaki/main/supporttracker.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/misaki/main/supporttracker.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/misaki/profile/comments.twig b/templates/misaki/profile/comments.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/misaki/profile/friends.twig b/templates/misaki/profile/friends.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/misaki/profile/groups.twig b/templates/misaki/profile/groups.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/misaki/profile/hidden.twig b/templates/misaki/profile/hidden.twig deleted file mode 100644 index efd101c..0000000 --- a/templates/misaki/profile/hidden.twig +++ /dev/null @@ -1,9 +0,0 @@ -
- There are a few possible reasons for this: -
    -
  • They changed their username.
  • -
  • They may have been abyss'd.
  • -
  • You made a typo.
  • -
  • They never existed.
  • -
-
diff --git a/templates/misaki/profile/index.twig b/templates/misaki/profile/index.twig deleted file mode 100644 index 2387986..0000000 --- a/templates/misaki/profile/index.twig +++ /dev/null @@ -1,3 +0,0 @@ -
- {{ profile.userPage|raw }} -
diff --git a/templates/misaki/profile/posts.twig b/templates/misaki/profile/posts.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/misaki/profile/threads.twig b/templates/misaki/profile/threads.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/misaki/settings/general.home.twig b/templates/misaki/settings/general.home.twig deleted file mode 100644 index b48ca80..0000000 --- a/templates/misaki/settings/general.home.twig +++ /dev/null @@ -1,4 +0,0 @@ -
-

There's nothing here yet...

-

...aside from Site Options.

-
diff --git a/templates/misaki/settings/general.options.twig b/templates/misaki/settings/general.options.twig deleted file mode 100644 index 36d145f..0000000 --- a/templates/misaki/settings/general.options.twig +++ /dev/null @@ -1,18 +0,0 @@ -
- - - - {% for field in options.fields %} -
-
-

{{ field.option_name }}

-

{{ field.option_description }}

-
-
- -
-
- {% endfor %} - - -
diff --git a/templates/yuuno/auth/login.twig b/templates/yuuno/auth/login.twig deleted file mode 100644 index b6e935d..0000000 --- a/templates/yuuno/auth/login.twig +++ /dev/null @@ -1,43 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Login{% endblock %} - -{% block content %} - {% if config('lock_authentication') %} -

Logging in is disabled for security checkups! Try again later.

- {% else %} -
-
-
- Login -
-
- -
- -
-
- -
-
- -
-
- -
- -
- -
- -
-
-
- {% endif %} -{% endblock %} diff --git a/templates/yuuno/auth/reactivate.twig b/templates/yuuno/auth/reactivate.twig deleted file mode 100644 index 38a0b2b..0000000 --- a/templates/yuuno/auth/reactivate.twig +++ /dev/null @@ -1,35 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Reactivate account{% endblock %} - -{% block content %} - {% if config('lock_authentication') %} -

Reactivation is disabled for security checkups! Try again later.

- {% else %} -
-
-
- Reactivate account -
-
- -
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- {% endif %} -{% endblock %} diff --git a/templates/yuuno/auth/register.twig b/templates/yuuno/auth/register.twig deleted file mode 100644 index 42349d8..0000000 --- a/templates/yuuno/auth/register.twig +++ /dev/null @@ -1,72 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Register{% endblock %} - -{% block content %} - {% if config('lock_authentication') or config('disable_registration') %} -
-
-
-
-

Registration is disabled.

-

Please try again later.

-
-
-
- {% else %} -
-
-
- Register -
-
- -
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- {% if config('recaptcha') %} -
- -
-
- {% include 'elements/captcha.twig' %} -
- {% endif %} - -
- -
-
-
-
-

-

Are you {{ haltName }}?

-

Making more than one account is not permitted.

-

If you lost your password please use the reset password form but if you don't already have an account you can go ahead and click the link below to show the registration form this check is based on your IP so in some cases someone may have registered/used the site on this IP already.

-

If we find out that you already have an account we may question you about it, if you can give a good reason we'll let it slide otherwise we may issue a temporary ban.

-
- -
-
-
- {% endif %} -{% endblock %} diff --git a/templates/yuuno/auth/resetpassword.twig b/templates/yuuno/auth/resetpassword.twig deleted file mode 100644 index fd4196f..0000000 --- a/templates/yuuno/auth/resetpassword.twig +++ /dev/null @@ -1,52 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Reset Password{% endblock %} - -{% block content %} - {% if config('lock_authentication') %} -

Resetting password is disabled because of security checkups!

- {% else %} -
-
-
- Reset Password -
-
- - {% if get.u is defined and get.k is defined %} - - -
- -
-
- -
-
- -
- {% else %} -
- -
-
- -
-
- -
-
- -
-
- -
- - {% endif %} -
-
-
- {% endif %} -{% endblock %} diff --git a/templates/yuuno/elements/captcha.twig b/templates/yuuno/elements/captcha.twig deleted file mode 100644 index c12a9b7..0000000 --- a/templates/yuuno/elements/captcha.twig +++ /dev/null @@ -1,14 +0,0 @@ - -
- diff --git a/templates/yuuno/elements/comment.twig b/templates/yuuno/elements/comment.twig deleted file mode 100644 index 11dccd6..0000000 --- a/templates/yuuno/elements/comment.twig +++ /dev/null @@ -1,29 +0,0 @@ -
  • -
    - {{ comment.userData.username }} -
    -
    -
    - -
    -
    -
    - {{ comment.parsed|raw|nl2br }} -
    -
    -
    -
      - {% for comment in comment.replies %} - {% include 'elements/comment.twig' %} - {% endfor %} -
    -
  • diff --git a/templates/yuuno/elements/comments.twig b/templates/yuuno/elements/comments.twig deleted file mode 100644 index 80c00ec..0000000 --- a/templates/yuuno/elements/comments.twig +++ /dev/null @@ -1,301 +0,0 @@ -
    -
    - {% if user.isActive %} -
    -
    -
    - - -
    - {% else %} -

    Log in to comment!

    - {% endif %} -
    -
    -
      - {% if comments %} - {% for comment in comments %} - {% include 'elements/comment.twig' %} - {% endfor %} - {% else %} -

      There are no comments yet!

      - {% endif %} -
    -
    -
    - -{% block js %} - -{% endblock %} diff --git a/templates/yuuno/elements/indexPanel.twig b/templates/yuuno/elements/indexPanel.twig deleted file mode 100644 index 6b270b8..0000000 --- a/templates/yuuno/elements/indexPanel.twig +++ /dev/null @@ -1,29 +0,0 @@ -
    - {% if user.isActive %} -
    -
    -
    -

    {{ user.username }}

    - {% set friendRequests = user.friends(-1, true)|length %} - {% if friendRequests %} - {{ friendRequests }} new friend requests - {% endif %} -
    -
    - {% endif %} -
    Stats
    - We have {{ stats.userCount }} user{% if stats.userCount != 1 %}s{% endif %}, - {{ stats.newestUser.username }} is the newest user, - it has been {{ stats.lastRegDate }} day{{ stats.lastRegDate == 1 ? '' : 's' }} since the last user registered and the forum has {{ stats.topicCount }} thread{% if stats.topicCount != 1 %}s{% endif %} and {{ stats.postCount }} post{% if stats.postCount != 1 %}s{% endif %}. -
    Online Users
    - {% if stats.onlineUsers %} - All active users in the past {{ config('max_online_time') / 60 }} minute{% if config('max_online_time') != 60 %}s{% endif %} - - {% for amount,onlineUser in stats.onlineUsers %} - - {% endfor %} -
    {{ onlineUser.username }}
    - {% else %} - There were no online users in the past {{ config('max_online_time') / 60 }} minute{% if config('max_online_time') != 60 %}s{% endif %}. - {% endif %} -
    diff --git a/templates/yuuno/elements/newsPost.twig b/templates/yuuno/elements/newsPost.twig deleted file mode 100644 index c4fe85f..0000000 --- a/templates/yuuno/elements/newsPost.twig +++ /dev/null @@ -1,17 +0,0 @@ -{% if newsHideTitle is not defined %}{{ post.title }}{% endif %} -
    - -
    - {{ post.userData.username }} -

    {{ post.userData.username }}

    -
    -
    -
    - {{ post.text|raw }} -
    -
    -
    -
    - Posted - {% if newsHideCommentCount is not defined %}{{ post.commentCount }} comment{% if post.commentCount != 1 %}s{% endif %}{% endif %} -
    diff --git a/templates/yuuno/elements/pagination.twig b/templates/yuuno/elements/pagination.twig deleted file mode 100644 index a62e6cd..0000000 --- a/templates/yuuno/elements/pagination.twig +++ /dev/null @@ -1,24 +0,0 @@ -{% set paginationSeparator %}{% if '%3F' in paginationUrl|url_encode %}&{% else %}?{% endif %}{% endset %} -{% set paginationPage = get.page|default(1) %} - -
    - {% if paginationPages|length > 1 %} - {% if paginationPage > 1 %} - {% if paginationPages|length > 2 %} - - {% endif %} - - {% endif %} - {% for id,page in paginationPages %} - {% if (id + 1) > (paginationPage - 3) and (id + 1) < (paginationPage + 3) %} - {{ id + 1 }} - {% endif %} - {% endfor %} - {% if paginationPage < paginationPages|length %} - - {% if paginationPages|length > 2 %} - - {% endif %} - {% endif %} - {% endif %} -
    diff --git a/templates/yuuno/forum/elements/forumBase.twig b/templates/yuuno/forum/elements/forumBase.twig deleted file mode 100644 index 82a5f5d..0000000 --- a/templates/yuuno/forum/elements/forumBase.twig +++ /dev/null @@ -1,55 +0,0 @@ -
    {{ title }}
    -
    - {% for forum in forum.forums %} - {% if forum.type == 1 %} - {% if forum.forums|length and forum.permission(constant('Sakura\\Perms\\Forum::VIEW'), user.id) %} -
    - {% if forum.type != 1 %}Subforums{% else %}{{ forum.name }}{% endif %} -
    - {% for forum in forum.forums %} - {% include 'forum/elements/forumEntry.twig' %} - {% endfor %} - {% endif %} - {% else %} - {% include 'forum/elements/forumEntry.twig' %} - {% endif %} - {% endfor %} -
    -{% if not forum.type and forum.id > 0 %} - {% set threads = forum.threads|batch(25) %} - - {% set paginationPages = threads %} - {% set paginationUrl %}{{ route('forums.forum', forum.id) }}{% endset %} - - {% include 'forum/elements/forumBtns.twig' %} - {% if forum.threads %} - - - - - - - - - - - - - - - - - - - - - {% for thread in threads[get.page|default(1) - 1] %} - {% include 'forum/elements/topicEntry.twig' %} - {% endfor %} - -
    TopicAuthorLast post
    TopicAuthorLast post
    - {% else %} -

    There are no posts in this forum!

    - {% endif %} - {% include 'forum/elements/forumBtns.twig' %} -{% endif %} diff --git a/templates/yuuno/forum/elements/forumBtns.twig b/templates/yuuno/forum/elements/forumBtns.twig deleted file mode 100644 index a5f45d2..0000000 --- a/templates/yuuno/forum/elements/forumBtns.twig +++ /dev/null @@ -1,23 +0,0 @@ -{% set paginationClass = 'rightSide' %} - - diff --git a/templates/yuuno/forum/elements/forumEntry.twig b/templates/yuuno/forum/elements/forumEntry.twig deleted file mode 100644 index f3c4861..0000000 --- a/templates/yuuno/forum/elements/forumEntry.twig +++ /dev/null @@ -1,35 +0,0 @@ -{% if forum.permission(constant('Sakura\\Perms\\Forum::VIEW'), user.id) %} -
    -
    -
    - -
    - {{ forum.description }} - {% if forum.forums|length %} -
    - Subforums: - {% for forum in forum.forums %} - {% if forum.unread(user.id) %}[!]{% endif %} {{ forum.name }} - {% endfor %} -
    - {% endif %} -
    -
    - {% if forum.type != 2 %} -
    -
    {{ forum.threadCount }}
    -
    {{ forum.postCount }}
    -
    -
    -
    - {% if forum.lastPost.id %} - {{ forum.lastPost.subject|slice(0, 30) }}{% if forum.lastPost.subject|length > 30 %}...{% endif %}
    - by {% if forum.lastPost.poster.id %}{{ forum.lastPost.poster.username }}{% else %}[deleted user]{% endif %} - {% else %} - There are no posts in this forum.
      - {% endif %} -
    -
    - {% endif %} -
    -{% endif %} diff --git a/templates/yuuno/forum/elements/forumMod.twig b/templates/yuuno/forum/elements/forumMod.twig deleted file mode 100644 index b26f719..0000000 --- a/templates/yuuno/forum/elements/forumMod.twig +++ /dev/null @@ -1,18 +0,0 @@ -
    - - {% if forumSticky is defined %} - - {% endif %} - {% if forumAnnounce is defined %} - - {% endif %} - {% if forumLock is defined %} - - {% endif %} - {% if forumRestore is defined %} - - {% endif %} - {% if forumTrash is defined or forumPrune is defined %} - - {% endif %} -
    diff --git a/templates/yuuno/forum/elements/replyForm.twig b/templates/yuuno/forum/elements/replyForm.twig deleted file mode 100644 index 87eda2b..0000000 --- a/templates/yuuno/forum/elements/replyForm.twig +++ /dev/null @@ -1,186 +0,0 @@ -{% set bbcode = { - 'b': ['Bold: [b]text[/b]', 'bold'], - 'i': ['Italic: [i]text[/i]', 'italic'], - 'u': ['Underline: [u]text[/u]', 'underline'], - 's': ['Strikethrough: [s]text[/s]', 'strikethrough'], - 'header': ['Header: [header]text[/header]', 'header'], - 'url': ['URL: [url]link[/url] or [url=link]text[/url]', 'chain'], - 'code': ['Code: [code]text[/code] (bbcodes inside this tag are ignored!)', 'code'], - 'spoiler': ['Spoiler: [spoiler]text[/spoiler]', 'minus'], - 'box': ['Spoiler box: [box]text[/box] or [box=title]text[/box]', 'folder', true], - 'list': ['List: [list][*]item\r\n[*]another item[/list]', 'list-ul'], - 'img': ['Image: [img]image link[/img], please use https instead of http if possible', 'picture-o'], - 'youtube': ['YouTube video: [youtube]video id (in the link after ?v= up until the first &)[/youtube]', 'youtube-play'] -} %} - -
    -
    - -
    - -
    -
    -
    - {% for code,meta in bbcode %} - - {% endfor %} -
    -
    - - -
    -
    -
    -
    -
    - - diff --git a/templates/yuuno/forum/elements/topicEntry.twig b/templates/yuuno/forum/elements/topicEntry.twig deleted file mode 100644 index 26593d1..0000000 --- a/templates/yuuno/forum/elements/topicEntry.twig +++ /dev/null @@ -1,27 +0,0 @@ - - -
    - - - {{ thread.title }} - - - {% if thread.firstPost.poster.id %} - {{ thread.firstPost.poster.username }} - {% else %} - [deleted user] - {% endif %} - - -
    {{ thread.replyCount }}
    -
    {{ thread.views }}
    - - - {% if thread.lastPost.poster.id %} - {{ thread.lastPost.poster.username }} - {% else %} - [deleted user] - {% endif %}
    - - - diff --git a/templates/yuuno/forum/forum.twig b/templates/yuuno/forum/forum.twig deleted file mode 100644 index 668354a..0000000 --- a/templates/yuuno/forum/forum.twig +++ /dev/null @@ -1,17 +0,0 @@ -{% extends 'global/master.twig' %} - -{% set title %}Forums / {{ forum.name }}{% endset %} - -{% set forumBackLink %}{{ route('forums.index') }}{% endset %} -{% set forumNewLink %}{{ route('forums.new', forum.id) }}{% endset %} -{% set forumMarkRead %}{{ route('forums.mark', forum.id) }}?s={{ session_id() }}{% endset %} - -{% block title %}{{ title }}{% endblock %} - -{% block content %} -
    -
    - {% include 'forum/elements/forumBase.twig' %} -
    -
    -{% endblock %} diff --git a/templates/yuuno/forum/index.twig b/templates/yuuno/forum/index.twig deleted file mode 100644 index dc19e61..0000000 --- a/templates/yuuno/forum/index.twig +++ /dev/null @@ -1,68 +0,0 @@ -{% extends 'global/master.twig' %} - -{% set title = 'Forums' %} - -{% block title %}{{ title }}{% endblock %} - -{% block content %} -
    -
    -
    -
    Popular threads
    - - - - - - {% for _t in activeThreads %} - - - - - {% endfor %} -
    TitleLast reply
    - {{ _t.title }} -
    -
    -
    -
    Latest posts
    - - - - - - {% for _p in latestPosts %} - - - - - {% endfor %} -
    Title & userPosted
    - {{ _p.subject }} - by - {{ _p.poster.username }} -
    -
    -
    -
    Today's most active poster
    - {% if activePoster.id %} - -
    -
    -
    -

    {{ activePoster.username }}

    - {% if activePoster.isPremium %}Tenshi {% endif %}{{ activePoster.country }} {{ activePoster.title }} -
    -
    -
    - {% else %} -

    No one yet!

    - {% endif %} -
    -
    -
    - {% include 'forum/elements/forumBase.twig' %} -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/forum/thread.twig b/templates/yuuno/forum/thread.twig deleted file mode 100644 index 3796d17..0000000 --- a/templates/yuuno/forum/thread.twig +++ /dev/null @@ -1,168 +0,0 @@ -{% extends 'global/master.twig' %} - -{% set forumBackLink %}{{ route('forums.forum', forum.id) }}{% endset %} - -{% block title %}{% if thread is defined %}{{ thread.title }}{% else %}Creating thread in {{ forum.name }}{% endif %}{% endblock %} - -{% if thread is defined %} - {% if forum.permission(constant('Sakura\\Perms\\Forum::REPLY'), user.id) - and ( - thread.status != 1 - or forum.permission(constant('Sakura\\Perms\\Forum::LOCK'), user.id) - ) %} - {% set forumReplyLink %}#reply{% endset %} - {% endif %} - - {% if forum.permission(constant('Sakura\\Perms\\Forum::STICKY'), user.id) - or forum.permission(constant('Sakura\\Perms\\Forum::ANNOUNCEMENT'), user.id) - or forum.permission(constant('Sakura\\Perms\\Forum::LOCK'), user.id) - or forum.permission(constant('Sakura\\Perms\\Forum::MOVE'), user.id) - or forum.permission(constant('Sakura\\Perms\\Forum::DELETE_ANY'), user.id) %} - {% set showMod = true %} - {% endif %} - - {% if forum.permission(constant('Sakura\\Perms\\Forum::STICKY'), user.id) %} - {% set forumSticky = thread.type == 1 ? true : false %} - {% endif %} - - {% if forum.permission(constant('Sakura\\Perms\\Forum::ANNOUNCEMENT'), user.id) %} - {% set forumAnnounce = thread.type == 2 ? true : false %} - {% endif %} - - {% if forum.permission(constant('Sakura\\Perms\\Forum::LOCK'), user.id) %} - {% set forumLock = thread.status == 1 ? true : false %} - {% endif %} - - {% if forum.permission(constant('Sakura\\Perms\\Forum::MOVE'), user.id) %} - {% if thread.oldForum %} - {% set forumRestore = true %} - {% endif %} - - {% if thread.forum != config('forum_trash_id') %} - {% set forumTrash = true %} - {% endif %} - {% endif %} - - {% if forum.permission(constant('Sakura\\Perms\\Forum::DELETE_ANY'), user.id) %} - {% if thread.forum == config('forum_trash_id') %} - {% set forumPrune = true %} - {% endif %} - {% endif %} - - {% set posts = thread.posts|batch(10) %} - - {% set paginationPages = posts %} - {% set paginationUrl %}{{ route('forums.thread', thread.id) }}{% endset %} -{% endif %} - -{% block css %} - -{% endblock %} - -{% block js %} - - -{% endblock %} - -{% block content %} -
    -
    -
    {{ forum.name }} / {{ thread.title }}
    - {% include 'forum/elements/forumBtns.twig' %} - - {% if thread is defined %} - {% set textCache = session.replyText['t' ~ thread.id] %} - {% set postingAction = route('forums.thread.reply', thread.id) %} - - {% for post in posts[get.page|default(1) - 1] %} - - - - - {% endfor %} - {% else %} - {% set titleCache = session.replyText['f' ~ forum.id].title %} - {% set textCache = session.replyText['f' ~ forum.id].text %} - {% set postingAction = route('forums.new', forum.id) %} - {% endif %} - {% if forumReplyLink is defined or thread is not defined %} - - - - - {% endif %} -
    - {% if not post.poster.permission(constant('Sakura\\Perms\\Site::DEACTIVATED')) or post.poster.permission(constant('Sakura\\Perms\\Site::RESTRICTED')) %}{{ post.poster.username }} - {{ post.poster.username }} - {% else %} - [deleted user] - {% endif %} -
    -
    {{ post.poster.title }}
    - Tenshi {{ post.poster.country(true) }}{% if post.poster.id == (thread.posts|first).poster.id %} OP{% endif %} - {% if user.isActive %} -
    - {% if (user.id == post.poster.id and forum.permission(constant('Sakura\\Perms\\Forum::EDIT_OWN'), user.id)) or forum.permission(constant('Sakura\\Perms\\Forum::EDIT_ANY'), user.id) %} - - {% endif %} - {% if (user.id == post.poster.id and forum.permission(constant('Sakura\\Perms\\Forum::DELETE_OWN'), user.id)) or forum.permission(constant('Sakura\\Perms\\Forum::DELETE_ANY'), user.id) %} - - {% endif %} - {% if not (post.poster.permission(constant('Sakura\\Perms\\Site::DEACTIVATED')) or post.poster.permission(constant('Sakura\\Perms\\Site::RESTRICTED')) or user.id == post.poster.id) %} - - - - {% endif %} - -
    - {% endif %} -
    -
    - -
    - {{ post.parsed|raw }} -
    - {% if post.poster.signature and post.poster.permission(constant('Sakura\\Perms\\Site::CHANGE_SIGNATURE')) %} -
    -
    - {{ post.poster.signature()|raw|nl2br }} -
    - {% endif %} -
    - {% if forumReplyLink is defined or thread is not defined %} - {% include 'forum/elements/replyForm.twig' %} - {% endif %} - {% include 'forum/elements/forumBtns.twig' %} -
    -
    -{% endblock %} diff --git a/templates/yuuno/global/confirm.twig b/templates/yuuno/global/confirm.twig deleted file mode 100644 index 95fc78d..0000000 --- a/templates/yuuno/global/confirm.twig +++ /dev/null @@ -1,22 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Confirmation{% endblock %} - -{% block content %} -
    -
    -

    {% block header %}Confirmation{% endblock %}

    -
    - {{ message }} -
    - - - {% for key,value in conditions %} - - {% endfor %} - - -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/global/information.twig b/templates/yuuno/global/information.twig deleted file mode 100644 index 3fd41b3..0000000 --- a/templates/yuuno/global/information.twig +++ /dev/null @@ -1,14 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Information{% endblock %} - -{% block content %} -
    -
    -

    Information

    -
    - {{ message }} - {% if redirect %}
    Click here if you aren't being redirected.{% endif %} -
    -
    -{% endblock %} diff --git a/templates/yuuno/global/maintenance.twig b/templates/yuuno/global/maintenance.twig deleted file mode 100644 index de1c3c5..0000000 --- a/templates/yuuno/global/maintenance.twig +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Service unavailable - - - -
    -

    - - The page is currently unavailable -

    -

    - The page you are looking for is temporarily unavailable. -

    -
    -

    - {{ message }} -

    -

    - HTTP 503 - Service unavailable -
    - Internet Explorer -

    -
    - - diff --git a/templates/yuuno/global/master.twig b/templates/yuuno/global/master.twig deleted file mode 100644 index f3ad2b5..0000000 --- a/templates/yuuno/global/master.twig +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - {% block title %}{{ config('sitename') }}{% endblock %} - - - - - - -{% if redirect %} - -{% endif %} - - - - - - - - - - - - - - -{{ block('meta') }} - - -{{ block('css') }} - - - - -{{ block('js') }} - - -
    - - -
    -
    - {% if profile is defined ? profile.background : (user.permission(constant('Sakura\\Perms\\Site::CHANGE_BACKGROUND')) and user.optionFields.profileBackgroundSiteWide and user.background) %} -
    - {% endif %} - {% if not user.isActive and server['REQUEST_URI'] != route('auth.login') %} -
    -
    - -
    - - -
    -
    - - -
    -
    - - -
    -
    - -
    -
    -
    - {% endif %} - {% if user.permission(constant('Sakura\\Perms\\Site::RESTRICTED')) %} -
    -

    Your account is currently in restricted mode!

    -
    A staff member has set your account to restricted mode most likely due to violation of the rules. While restricted you won't be able to use most public features of the site. If you think this is a mistake please get in touch with one of our staff members.
    -
    - {% endif %} - - - - {% if config('header_announcement_image') %} -
    - {% if config('header_announcement_link') %} - - {% endif %} -
    - {% endif %} - - {% block content %} -

    There is nothing here!

    - {% endblock %} -
    - -
    - - {% if config('dev.show_changelog', true) and stats %} - - {% endif %} - - diff --git a/templates/yuuno/global/notfound.twig b/templates/yuuno/global/notfound.twig deleted file mode 100644 index ccefa2a..0000000 --- a/templates/yuuno/global/notfound.twig +++ /dev/null @@ -1,47 +0,0 @@ - - - - - Cannot find page - - - -
    -

    - - The page cannot be found -

    -

    - The page you are looking for might have been removed, had its - name changed, or is temporarily unavailable. -

    -
    -

    - Please try the following: -

    -
      -
    • - If you typed the page address in the Address bar, make - sure that it is spelled correctly. -
    • -
    • - Open the flashii.net - home page, and then look for links to the information you want. -
    • -
    • - Click the Back - button to try another link. -
    • -
    • - Click Search - to look for information on the Internet. -
    • -
    -

    - HTTP 404 - File not found -
    - Internet Explorer -

    -
    - - diff --git a/templates/yuuno/global/restricted.twig b/templates/yuuno/global/restricted.twig deleted file mode 100644 index c545cbe..0000000 --- a/templates/yuuno/global/restricted.twig +++ /dev/null @@ -1,12 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Restricted{% endblock %} - -{% block content %} -
    -
    -

    You aren't allowed to view this page!

    - Please make sure that you're logged in and are supposed to be able to access this page. If you think this was a mistake please contact a staff member. -
    -
    -{% endblock %} diff --git a/templates/yuuno/group/index.twig b/templates/yuuno/group/index.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/yuuno/group/index.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/yuuno/meta/banned.twig b/templates/yuuno/meta/banned.twig deleted file mode 100644 index 27ae12c..0000000 --- a/templates/yuuno/meta/banned.twig +++ /dev/null @@ -1,30 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}You are banned!{% endblock %} - -{% block content %} -
    -
    -
    -

    You got dunked on!

    - {% if ban.reason %} -

    The following reason was supplied:

    -

    - {{ ban.reason|raw }} -

    - {% else %} -

    No reason was supplied.

    - {% endif %} -
    -

    Additional information

    -
      -
    • You were banned on {{ ban.issued|date(config('date_format')) }}.
    • -
    • {% if ban.expires %}This ban expires on {{ ban.expires|date(config('date_format')) }}.{% else %}You are permanently banned.{% endif %}
    • - {% if ban.expires %} -
    • You were banned by {{ ban.issuer.username }}.
    • - {% endif %} -
    -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/meta/faq.twig b/templates/yuuno/meta/faq.twig deleted file mode 100644 index 95d6d82..0000000 --- a/templates/yuuno/meta/faq.twig +++ /dev/null @@ -1,28 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Frequently Asked Questions{% endblock %} - -{% block content %} -
    -
    -
    - Frequently Asked Questions -
    -
    - {% for question in page.questions %} - {{ question.faq_question }} - {% endfor %} -
    -
    -
    - {% for question in page.questions %} -
    - {{ question.faq_question }} - -
    -

    {{ question.faq_answer }}

    - {% endfor %} -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/meta/index.twig b/templates/yuuno/meta/index.twig deleted file mode 100644 index bc3b927..0000000 --- a/templates/yuuno/meta/index.twig +++ /dev/null @@ -1,20 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block content %} -
    -
    - {% include 'elements/indexPanel.twig' %} -
    -
    -
    News
    - {% for post in news %} - {% include 'elements/newsPost.twig' %} - {% endfor %} -
    -
    -
    -{% endblock %} - -{% block js %} - -{% endblock %} diff --git a/templates/yuuno/meta/infopage.twig b/templates/yuuno/meta/infopage.twig deleted file mode 100644 index fe7b7e3..0000000 --- a/templates/yuuno/meta/infopage.twig +++ /dev/null @@ -1,11 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}{% if page.title %}{{ page.title }}{% else %}Not found!{% endif %}{% endblock %} - -{% block content %} -
    -
    - {{ include(template_from_string(page.content|raw)) }} -
    -
    -{% endblock %} diff --git a/templates/yuuno/meta/report.twig b/templates/yuuno/meta/report.twig deleted file mode 100644 index 38b9115..0000000 --- a/templates/yuuno/meta/report.twig +++ /dev/null @@ -1 +0,0 @@ -{% extends 'global/master.twig' %} diff --git a/templates/yuuno/meta/search.twig b/templates/yuuno/meta/search.twig deleted file mode 100644 index 060c8b0..0000000 --- a/templates/yuuno/meta/search.twig +++ /dev/null @@ -1,24 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Search{% endblock %} - -{% block content %} -
    -
    -
    Search
    - - - -
    -
    -{% endblock %} diff --git a/templates/yuuno/meta/settings.twig b/templates/yuuno/meta/settings.twig deleted file mode 100644 index ab84265..0000000 --- a/templates/yuuno/meta/settings.twig +++ /dev/null @@ -1,23 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}{{ page.category }} / {{ page.mode }}{% endblock %} - -{% block content %} -
    -
    - {% include 'elements/settingsNav.twig' %} -
    -
    -
    - {{ page.category }} / {{ page.mode }} -
    -
    - {% for descline in page.description %} -
    {{ include(template_from_string(descline)) }}
    - {% endfor %} -
    - {% include templates ~ '/' ~ current ~ '.twig' %} -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/news/category.twig b/templates/yuuno/news/category.twig deleted file mode 100644 index 2c54453..0000000 --- a/templates/yuuno/news/category.twig +++ /dev/null @@ -1,33 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}News{% endblock %} - -{% block css %} - -{% endblock %} - -{% set posts = category.posts|batch(3) %} - -{% set paginationPages = posts|keys %} -{% set paginationUrl %}{{ route('news.category', category.name) }}{% endset %} - -{% block content %} -
    -
    -
    News
    - {% for post in posts[get.page|default(1) - 1] %} - {% include 'elements/newsPost.twig' %} - {% endfor %} - {% if posts|length > 1 %} -
    - {% include 'elements/pagination.twig' %} -
    -
    - {% endif %} -
    -
    -{% endblock %} diff --git a/templates/yuuno/news/post.twig b/templates/yuuno/news/post.twig deleted file mode 100644 index 85c5ce5..0000000 --- a/templates/yuuno/news/post.twig +++ /dev/null @@ -1,20 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}{{ post.title }}{% endblock %} - -{% set commentsCategory = 'news-' ~ post.category ~ '-' ~ post.id %} -{% set comments = post.comments %} - -{% set newsHideTitle = true %} -{% set newsHideCommentCount = true %} - -{% block content %} -
    -
    -
    {{ post.title }}
    - {% include 'elements/newsPost.twig' %} - {% include 'elements/comments.twig' %} -
    -
    -{% endblock %} - diff --git a/templates/yuuno/premium/complete.twig b/templates/yuuno/premium/complete.twig deleted file mode 100644 index 7826810..0000000 --- a/templates/yuuno/premium/complete.twig +++ /dev/null @@ -1,11 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Purchase complete!{% endblock %} - -{% block content %} -
    -

    Thank you for your contribution!

    -

    -

    Your Tenshi will expire on {{ user.isPremium|date(config('date_format')) }}.

    -
    -{% endblock %} diff --git a/templates/yuuno/premium/index.twig b/templates/yuuno/premium/index.twig deleted file mode 100644 index 8663db2..0000000 --- a/templates/yuuno/premium/index.twig +++ /dev/null @@ -1,99 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block title %}Support {{ config('sitename') }}{% endblock %} - -{% set persistentPremium = user.permission(constant('Sakura\\Perms\\Site::STATIC_PREMIUM')) %} - -{% set features = { - "money": "Helping us pay for the bills to survive", - "certificate": "A special name colour to stand out in the crowd", - "magic": "The ability to change your username once a month", - "pencil": "You can set a custom user title", - "lock": "Access to some exclusive forums", - "picture-o": "You get the ability to set a profile background" -} %} - -{% block content %} - {% if get.fail %} -
    -

    The payment failed or was cancelled!

    -

    Something went wrong while processing the transaction, your PayPal account wasn't charged.

    -
    - {% endif %} -
    -
    Support {{ config('sitename') }}
    -
    -

    To keep the site and everything surrounding it running I need money to pay the bills, however instead of just having a donate button I decided on adding a premium system to the site which gives you a few extras. The premium rank is indentified on the site by Tenshi. More stuff that literally doesn't exist yet will be added to the list of featuring down the line but in order, the stuff that already exist can be seen further down on this page. With your help we can keep adding new stuff, get new hardware and keep the site awesome!

    -
    - {% if user.isPremium %} -
    - Your current Tenshi tag -
    -
    -

    {% if persistentPremium %}Your rank has persistent Tenshi.{% else %}Your Tenshi tag is valid till {{ user.premiumInfo.expire|date(config('date_format')) }}.{% endif %}

    - -
    - {% endif %} -
    - Why should I get Tenshi? -
    -
    - {% for k,v in features %} -
    -
    -
    {{ v|raw }}
    -
    -
    - {% endfor %} -
    -
    -
    -
    The good feeling of helping the staff of your favourite site keep it up and awesome
    -
    -
    -
    -
    - Payment Options -
    - Our transactions are handled through PayPal. -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - {% if user.isActive and user.permission(constant('Sakura\\Perms\\Site::OBTAIN_PREMIUM')) %} -
    - -
    -
    -
    -

    Total: €

    -
    -
    - -
    -
    -
    - {% elseif user.isActive %} -

    You can't get Tenshi at the current moment!

    - {% else %} -

    You need to be logged in to get Tenshi!

    - {% endif %} -
    - {% if user.isActive and user.permission(constant('Sakura\\Perms\\Site::OBTAIN_PREMIUM')) %} - - - {% endif %} -{% endblock %} diff --git a/templates/yuuno/profile/comments.twig b/templates/yuuno/profile/comments.twig deleted file mode 100644 index c468a7d..0000000 --- a/templates/yuuno/profile/comments.twig +++ /dev/null @@ -1,6 +0,0 @@ -{% set comments = profile.profileComments %} -{% set commentsCategory = 'profile-' ~ profile.id %} -
    -

    Comments

    -
    -{% include 'elements/comments.twig' %} diff --git a/templates/yuuno/profile/friends.twig b/templates/yuuno/profile/friends.twig deleted file mode 100644 index 06c6705..0000000 --- a/templates/yuuno/profile/friends.twig +++ /dev/null @@ -1,24 +0,0 @@ -{% set friends = profile.friends(2)|batch(12) %} - -{% set paginationPages = friends %} -{% set paginationUrl %}{{ route('user.profile', profile.id) }}{% endset %} - -
    -

    Friends

    -
    -
    - {% for friend in friends[get.page|default(1) - 1] %} - - {% endfor %} -
    -
    -{% if friends|length > 1 %} -
    - {% include 'elements/pagination.twig' %} -
    -{% endif %} diff --git a/templates/yuuno/profile/groups.twig b/templates/yuuno/profile/groups.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/yuuno/profile/posts.twig b/templates/yuuno/profile/posts.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/yuuno/profile/threads.twig b/templates/yuuno/profile/threads.twig deleted file mode 100644 index e69de29..0000000 diff --git a/templates/yuuno/profile/userpage.twig b/templates/yuuno/profile/userpage.twig deleted file mode 100644 index 2387986..0000000 --- a/templates/yuuno/profile/userpage.twig +++ /dev/null @@ -1,3 +0,0 @@ -
    - {{ profile.userPage|raw }} -
    diff --git a/templates/yuuno/settings/account/email.twig b/templates/yuuno/settings/account/email.twig deleted file mode 100644 index bfdfb66..0000000 --- a/templates/yuuno/settings/account/email.twig +++ /dev/null @@ -1,21 +0,0 @@ -{% extends 'settings/account/master.twig' %} - -{% set mode = 'E-mail address' %} - -{% block description %} -

    You e-mail address is used for password recovery and stuff like that!

    -{% endblock %} - -{% block settingsContent %} -
    -

    Your e-mail address is currently set to {{ user.email }}.

    -
    -

    E-mail address

    -
    -
    -
    - - -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/account/master.twig b/templates/yuuno/settings/account/master.twig deleted file mode 100644 index 3748acb..0000000 --- a/templates/yuuno/settings/account/master.twig +++ /dev/null @@ -1,3 +0,0 @@ -{% extends 'settings/master.twig' %} - -{% set category = 'Account' %} diff --git a/templates/yuuno/settings/account/password.twig b/templates/yuuno/settings/account/password.twig deleted file mode 100644 index d9e5598..0000000 --- a/templates/yuuno/settings/account/password.twig +++ /dev/null @@ -1,24 +0,0 @@ -{% extends 'settings/account/master.twig' %} - -{% set mode = 'Password' %} - -{% block description %} -

    Used to authenticate with the site and certain related services.

    -{% endblock %} - -{% block settingsContent %} -
    -
    -

    Current Password

    -
    -
    -
    -

    New Password

    -
    -
    -
    - - -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/account/ranks.twig b/templates/yuuno/settings/account/ranks.twig deleted file mode 100644 index 581261a..0000000 --- a/templates/yuuno/settings/account/ranks.twig +++ /dev/null @@ -1,29 +0,0 @@ -{% extends 'settings/account/master.twig' %} - -{% set mode = 'Ranks' %} - -{% block description %} -

    Manage what ranks you're in and what is set as your main rank. Your main rank is highlighted. You get the permissions of all of the ranks you're in combined.

    -{% endblock %} - -{% block settingsContent %} - - - {% for rank in user.ranks %} - - - - - {% endfor %} - -
    - {{ rank.name }} - -
    - - - - -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/account/title.twig b/templates/yuuno/settings/account/title.twig deleted file mode 100644 index b5d25b0..0000000 --- a/templates/yuuno/settings/account/title.twig +++ /dev/null @@ -1,21 +0,0 @@ -{% extends 'settings/account/master.twig' %} - -{% set mode = 'Title' %} - -{% block description %} -

    That little piece of text displayed besides your username in most places.

    -{% endblock %} - -{% block settingsContent %} -
    -

    Your current user title is:
    {{ user.title }}

    -
    -

    New title

    -
    -
    -
    - - -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/account/username.twig b/templates/yuuno/settings/account/username.twig deleted file mode 100644 index 23227a8..0000000 --- a/templates/yuuno/settings/account/username.twig +++ /dev/null @@ -1,27 +0,0 @@ -{% extends 'settings/account/master.twig' %} - -{% set mode = 'Username' %} - -{% block description %} -

    Probably the biggest part of your identity on a site.

    -

    You can only change this once every 30 days so choose wisely.

    -{% endblock %} - -{% set eligible = user.getUsernameHistory ? (date().timestamp - user.getUsernameHistory()[0].change_time) > 2592000 : true %} - -{% block settingsContent %} -
    -

    You are {% if not eligible %}not {% endif %}eligible for a name change.

    -

    {% if user.getUsernameHistory %}Your last name change was .{% else %}This is your first username change.{% endif %}

    - {% if eligible %} -
    -

    Username

    -
    -
    -
    - - -
    - {% endif %} -
    -{% endblock %} diff --git a/templates/yuuno/settings/advanced/deactivate.twig b/templates/yuuno/settings/advanced/deactivate.twig deleted file mode 100644 index 3dab31b..0000000 --- a/templates/yuuno/settings/advanced/deactivate.twig +++ /dev/null @@ -1,21 +0,0 @@ -{% extends 'settings/advanced/master.twig' %} - -{% set mode = 'Deactivate' %} - -{% block description %} -

    You can deactivate your account here if you want to leave :(.

    -

    This will remove your account from every rank it's a part of and make you unable to login.

    -

    If you have an active Tenshi tag on your account it won't pause while your account is deactivated.

    -{% endblock %} - -{% block settingsContent %} -
    -
    -

    Enter your password to continue

    -
    -
    -
    - -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/advanced/master.twig b/templates/yuuno/settings/advanced/master.twig deleted file mode 100644 index 7405e89..0000000 --- a/templates/yuuno/settings/advanced/master.twig +++ /dev/null @@ -1,3 +0,0 @@ -{% extends 'settings/master.twig' %} - -{% set category = 'Advanced' %} diff --git a/templates/yuuno/settings/advanced/sessions.twig b/templates/yuuno/settings/advanced/sessions.twig deleted file mode 100644 index 7d99365..0000000 --- a/templates/yuuno/settings/advanced/sessions.twig +++ /dev/null @@ -1,47 +0,0 @@ -{% extends 'settings/advanced/master.twig' %} - -{% set mode = 'Sessions' %} - -{% block description %} -

    Session keys are a way of identifying yourself with the system without keeping your password in memory.

    -

    If someone finds one of your session keys they could possibly compromise your account, if you see any sessions here that shouldn't be here hit the Kill button to kill the selected session.

    -

    If you get logged out after clicking one you've most likely killed your current session, to make it easier to avoid this from happening your current session is highlighted.

    -{% endblock %} - -{% block settingsContent %} - - - - - - - - - {% for s in sessions %} - - - - - - - {% endfor %} - -
    IPUseragentLogin time
    IPUseragentLogin time
    - {{ s.user_ip }} - - {{ s.user_agent }} - - - -
    - - -
    -
    -
    -
    - - -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/appearance/_preview.twig b/templates/yuuno/settings/appearance/_preview.twig deleted file mode 100644 index e0ca61f..0000000 --- a/templates/yuuno/settings/appearance/_preview.twig +++ /dev/null @@ -1,35 +0,0 @@ - diff --git a/templates/yuuno/settings/appearance/avatar.twig b/templates/yuuno/settings/appearance/avatar.twig deleted file mode 100644 index 95b1b13..0000000 --- a/templates/yuuno/settings/appearance/avatar.twig +++ /dev/null @@ -1,27 +0,0 @@ -{% extends 'settings/appearance/master.twig' %} - -{% set mode = 'Avatar' %} - -{% block description %} -

    Maximum image size is {{ config('avatar_max_width') }}x{{ config('avatar_max_height') }}, minimum image size is {{ config('avatar_min_width') }}x{{ config('avatar_min_height') }}, maximum file size is {{ config('avatar_max_fsize')|byte_symbol }}.

    -{% endblock %} - -{% block settingsContent %} -
    - -
    -
    - Your Avatar -
    -
    - -
    - (Leave upload box empty to remove avatar) -
    -
    -
    - -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/appearance/background.twig b/templates/yuuno/settings/appearance/background.twig deleted file mode 100644 index 1f452b9..0000000 --- a/templates/yuuno/settings/appearance/background.twig +++ /dev/null @@ -1,27 +0,0 @@ -{% extends 'settings/appearance/master.twig' %} - -{% set mode = 'Background' %} - -{% block description %} -

    Maximum image size is {{ config('background_max_width') }}x{{ config('background_max_height') }}, minimum image size is {{ config('background_min_width') }}x{{ config('background_min_height') }}, maximum file size is {{ config('background_max_fsize')|byte_symbol }}.

    -{% endblock %} - -{% block settingsContent %} -
    - -
    -
    - Your Background -
    -
    - -
    - (Leave upload box empty to remove background) -
    -
    -
    - -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/appearance/header.twig b/templates/yuuno/settings/appearance/header.twig deleted file mode 100644 index 6f90955..0000000 --- a/templates/yuuno/settings/appearance/header.twig +++ /dev/null @@ -1,27 +0,0 @@ -{% extends 'settings/appearance/master.twig' %} - -{% set mode = 'Header' %} - -{% block description %} -

    Maximum image size is {{ config('header_max_width') }}x{{ config('header_max_height') }}, minimum image size is {{ config('header_min_width') }}x{{ config('header_min_height') }}, maximum file size is {{ config('header_max_fsize')|byte_symbol }}.

    -{% endblock %} - -{% block settingsContent %} -
    - -
    -
    - Your Header -
    -
    - -
    - (Leave upload box empty to remove header) -
    -
    -
    - -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/appearance/master.twig b/templates/yuuno/settings/appearance/master.twig deleted file mode 100644 index ff94170..0000000 --- a/templates/yuuno/settings/appearance/master.twig +++ /dev/null @@ -1,3 +0,0 @@ -{% extends 'settings/master.twig' %} - -{% set category = 'Appearance' %} diff --git a/templates/yuuno/settings/appearance/signature.twig b/templates/yuuno/settings/appearance/signature.twig deleted file mode 100644 index 4540c6a..0000000 --- a/templates/yuuno/settings/appearance/signature.twig +++ /dev/null @@ -1,21 +0,0 @@ -{% extends 'settings/appearance/master.twig' %} - -{% set mode = 'Signature' %} - -{% block description %} -

    This signature is displayed at the end of all your posts on the forum.

    -{% endblock %} - -{% block settingsContent %} -
    {{ user.signature()|raw|nl2br }}
    -
    -
    -
    -
    - - - -
    -
    - {% include 'settings/appearance/_preview.twig' %} -{% endblock %} diff --git a/templates/yuuno/settings/appearance/userpage.twig b/templates/yuuno/settings/appearance/userpage.twig deleted file mode 100644 index 2edc5c9..0000000 --- a/templates/yuuno/settings/appearance/userpage.twig +++ /dev/null @@ -1,21 +0,0 @@ -{% extends 'settings/appearance/master.twig' %} - -{% set mode = 'Userpage' %} - -{% block description %} -

    The custom text that is displayed on your profile.

    -{% endblock %} - -{% block settingsContent %} -
    {{ user.userPage()|raw|nl2br }}
    -
    -
    -
    -
    - - - -
    -
    - {% include 'settings/appearance/_preview.twig' %} -{% endblock %} diff --git a/templates/yuuno/settings/friends/listing.twig b/templates/yuuno/settings/friends/listing.twig deleted file mode 100644 index b712087..0000000 --- a/templates/yuuno/settings/friends/listing.twig +++ /dev/null @@ -1,39 +0,0 @@ -{% extends 'settings/general/master.twig' %} - -{% set friends = user.friends(1)|batch(12) %} - -{% set paginationPages = friends %} -{% set paginationUrl %}{{ route('settings.friends.listing') }}{% endset %} - -{% set mode = 'Listing' %} - -{% block description %} -

    Manage your friends.

    -{% endblock %} - -{% block settingsContent %} - {% if friends|length %} -
    - {% for friend in friends[get.page|default(1) - 1] %} - - {% endfor %} -
    -
    - {% if friends|length > 1 %} -
    - {% include 'elements/pagination.twig' %} -
    - {% endif %} - {% else %} -

    You don't have any friends yet!

    - {% endif %} -{% endblock %} diff --git a/templates/yuuno/settings/friends/master.twig b/templates/yuuno/settings/friends/master.twig deleted file mode 100644 index 7007d0e..0000000 --- a/templates/yuuno/settings/friends/master.twig +++ /dev/null @@ -1,11 +0,0 @@ -{% extends 'settings/master.twig' %} - -{% set category = 'Friends' %} - -{% block css %} - -{% endblock %} diff --git a/templates/yuuno/settings/friends/requests.twig b/templates/yuuno/settings/friends/requests.twig deleted file mode 100644 index e587a01..0000000 --- a/templates/yuuno/settings/friends/requests.twig +++ /dev/null @@ -1,40 +0,0 @@ -{% extends 'settings/general/master.twig' %} - -{% set friends = user.friends(-1)|batch(12) %} - -{% set paginationPages = friends %} -{% set paginationUrl %}{{ route('settings.friends.requests') }}{% endset %} - -{% set mode = 'Requests' %} - -{% block description %} -

    Handle friend requests.

    -{% endblock %} - -{% block settingsContent %} - {% if friends|length %} -
    - {% for friend in friends[get.page|default(1) - 1] %} - - {% endfor %} -
    -
    - {% if friends|length > 1 %} -
    - {% include 'elements/pagination.twig' %} -
    - {% endif %} - {% else %} -

    You don't have any pending requests!

    - {% endif %} -{% endblock %} diff --git a/templates/yuuno/settings/general/home.twig b/templates/yuuno/settings/general/home.twig deleted file mode 100644 index 40cbdee..0000000 --- a/templates/yuuno/settings/general/home.twig +++ /dev/null @@ -1,25 +0,0 @@ -{% extends 'settings/general/master.twig' %} - -{% set mode = 'Home' %} - -{% block description %} -

    Welcome to the Settings Panel! From here you can monitor, view and update your profile and preferences.

    -{% endblock %} - -{% block settingsContent %} - -{% endblock %} diff --git a/templates/yuuno/settings/general/master.twig b/templates/yuuno/settings/general/master.twig deleted file mode 100644 index b59e6d3..0000000 --- a/templates/yuuno/settings/general/master.twig +++ /dev/null @@ -1,3 +0,0 @@ -{% extends 'settings/master.twig' %} - -{% set category = 'General' %} diff --git a/templates/yuuno/settings/general/options.twig b/templates/yuuno/settings/general/options.twig deleted file mode 100644 index cd73b80..0000000 --- a/templates/yuuno/settings/general/options.twig +++ /dev/null @@ -1,33 +0,0 @@ -{% extends 'settings/general/master.twig' %} - -{% set mode = 'Options' %} - -{% block description %} -

    These are a few personalisation options for the site while you're logged in.

    -{% endblock %} - -{% block settingsContent %} - {% if fields %} -
    - {% for field in fields %} -
    -
    -

    {{ field.name }}

    -
    - {{ field.description }} -
    -
    -
    - -
    -
    - {% endfor %} -
    - - -
    -
    - {% else %} -

    There are currently no changeable options.

    - {% endif %} -{% endblock %} diff --git a/templates/yuuno/settings/general/profile.twig b/templates/yuuno/settings/general/profile.twig deleted file mode 100644 index 0b22a13..0000000 --- a/templates/yuuno/settings/general/profile.twig +++ /dev/null @@ -1,76 +0,0 @@ -{% extends 'settings/general/master.twig' %} - -{% set mode = 'Profile' %} - -{% block description %} -

    These are the external account links etc. on your profile, shouldn't need any additional explanation for this one.

    -{% endblock %} - -{% set months = { - 1: "January", - 2: "February", - 3: "March", - 4: "April", - 5: "May", - 6: "June", - 7: "July", - 8: "August", - 9: "September", - 10: "October", - 11: "November", - 12: "December", -} %} - -{% set birthday = user.birthday|split('-') %} - -{% block settingsContent %} -
    - {% for field in fields %} -
    -
    -

    {{ field.name }}

    -
    -
    - -
    - {% if field.additional %} - {% for id,addit in field.additional %} -
    - - -
    - {% endfor %} - {% endif %} -
    - {% endfor %} -
    -
    -

    Birthday

    -
    -
    - Day: - Month: - Year: -
    -
    -
    - - -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/master.twig b/templates/yuuno/settings/master.twig deleted file mode 100644 index b39a918..0000000 --- a/templates/yuuno/settings/master.twig +++ /dev/null @@ -1,29 +0,0 @@ -{% extends 'global/master.twig' %} - -{% set title = category ~ ' / ' ~ mode %} - -{% block title %}{{ title }}{% endblock %} - -{% block content %} -
    -
    -
    - Navigation -
    -
    - {% for name,links in navigation %} -
    {{ name }}
    - {% for name,link in links %} - {{ name }} - {% endfor %} - {% endfor %} -
    -
    -
    -
    {{ title }}
    -
    {{ block('description') }}
    - {{ block('settingsContent') }} -
    -
    -
    -{% endblock %} diff --git a/templates/yuuno/settings/notifications/history.twig b/templates/yuuno/settings/notifications/history.twig deleted file mode 100644 index fdbd42e..0000000 --- a/templates/yuuno/settings/notifications/history.twig +++ /dev/null @@ -1,59 +0,0 @@ -{% extends 'settings/notifications/master.twig' %} - -{% set mode = 'History' %} - -{% block description %} -

    The history of notifications that have been sent to you.

    -{% endblock %} - -{% set alerts = user.notifications(0, false)|batch(10) %} - -{% set paginationPages = alerts %} -{% set paginationUrl %}{{ route('settings.notifications.history') }}{% endset %} - -{% block css %} - -{% endblock %} - -{% block settingsContent %} - {% if alerts %} - - {% if alerts|length > 1 %} -
    - {% include 'elements/pagination.twig' %} -
    - {% endif %} - {% else %} -

    You don't have any notifications in your history!

    - {% endif %} -{% endblock %} diff --git a/templates/yuuno/settings/notifications/master.twig b/templates/yuuno/settings/notifications/master.twig deleted file mode 100644 index 7af531f..0000000 --- a/templates/yuuno/settings/notifications/master.twig +++ /dev/null @@ -1,3 +0,0 @@ -{% extends 'settings/master.twig' %} - -{% set category = 'Notifications' %} diff --git a/templates/yuuno/user/members.twig b/templates/yuuno/user/members.twig deleted file mode 100644 index 73d2f0c..0000000 --- a/templates/yuuno/user/members.twig +++ /dev/null @@ -1,116 +0,0 @@ -{% extends 'global/master.twig' %} - -{% set sorts = ['boxes', 'rectangles', 'list'] %} -{% set sort = get.sort in sorts ? get.sort : sorts[0] %} - -{% set notfound = rank == 0 %} - -{% set rankTitle %} -{% if notfound %}Not found{% else %}{{ ranks[rank].name(true) }}{% endif %} -{% endset %} - -{% set rankDescription %} -{% if notfound %}The requested rank could not be found!{% else %}{{ ranks[rank].description }}{% endif %} -{% endset %} - -{% set users = ranks[rank].users|batch(membersPerPage) %} - -{% set currPage = get.page|default(1) - 1 %} - -{% set paginationPages = users %} -{% set paginationUrl %}{% if rank %}{{ route('members.rank', rank) }}{% else %}{{ route('members.index') }}{% endif %}{% endset %} - -{% block title %}{{ rankTitle }}{% endblock %} - -{% block content %} -
    -

    {{ rankTitle }}

    -

    {{ rankDescription }}

    -
    -
    - - {% if not users|length %} -

    This rank has no members!

    - {% elseif not notfound %} -
    - {% if sort == sorts[2] %} - - - - - - - - - - - - - - - - - - - - - - {% for count,user in users[currPage] %} - - - - - - - - - - - {% endfor %} -
    No.UsernameRegisteredLast onlineUser titleCountry
    No.UsernameRegisteredLast onlineUser titleCountry
    - #{{ rank ? count + 1 : count }} - - {{ user.username }} - - - - {% if user.lastOnline == 0 %}Never logged in.{% else %}{% endif %} - - {{ user.title }} - - {% if user.country|lower == 'xx' %}?{% else %}{{ user.country(true) }}{% endif %} -
    - {% else %} - {% for user in users[currPage] %} - {# These comment tags are here to prevent the link extending too far - #}
    {# - #}{{ user.username }}{# - #}{# - #}{{ user.username }}{# - #}{# - #}
    {# - #}
    - {% endfor %} - {% endif %} -
    - {% if users|length > 1 %} - {% include 'elements/pagination.twig' %} - {% endif %} - {% endif %} -
    -{% endblock %} diff --git a/templates/yuuno/user/profile.twig b/templates/yuuno/user/profile.twig deleted file mode 100644 index d3a97ff..0000000 --- a/templates/yuuno/user/profile.twig +++ /dev/null @@ -1,238 +0,0 @@ -{% extends 'global/master.twig' %} - -{% set profileHidden = profile.permission(constant('Sakura\\Perms\\Site::DEACTIVATED')) or (profile.permission(constant('Sakura\\Perms\\Site::RESTRICTED')) and (user.id != profile.id and not user.permission(constant('Sakura\\Perms\\Manage::USE_MANAGE'), constant('Sakura\\Perms::MANAGE')))) %} - -{% set noUserpage = profile.userPage|length < 1 %} - -{% set profileView = noUserpage and profileView == 'index' ? 'comments' : profileView %} - -{% block title %}{% if profileHidden %}User not found!{% else %}Profile of {{ profile.username }}{% endif %}{% endblock %} - -{% block js %} - {% if not profileHidden %} - - {% endif %} -{% endblock %} - -{% block content %} - {% if profileHidden %} -
    -
    -

    The requested user does not exist!

    - There are a few possible reasons for this: -
      -
    • They changed their username.
    • -
    • They may have been restricted.
    • -
    • You made a typo.
    • -
    • They never existed.
    • -
    -
    -
    - {% else %} -
    -
    -
    -
    -
    -
    -

    {{ profile.username }}

    - {% if profile.isPremium %}Tenshi {% endif %}{{ profile.country }} {{ profile.title }} -
    -
    - Joined -
    - {% if profile.lastOnline < 1 %} - {{ profile.username }} hasn't logged in yet. - {% else %} - Last online - {% endif %} - {% if profile.birthday != '0000-00-00' and profile.birthday|split('-')[0] > 0 %} -
    Age {{ profile.birthday(true) }} years old  - {% endif %} -
    -
    -
    -
    -
    - {% if not noUserpage %} - - {% endif %} - {# - #} - - {##} - -
    - {% if user.isActive %} -
    - {% if user.id == profile.id %} - - {% else %} - {% if user.isFriends(profile.id) != 0 %}{% endif %} - - - {% endif %} - {% if user.permission(constant('Sakura\\Perms\\Manage::CAN_RESTRICT_USERS'), constant('Sakura\\Perms::MANAGE')) %} - - {% endif %} -
    - {% endif %} -
    -
    -
    - - - - - - - -
    -
    - - - - - - - - - - - - - -
    Threads{{ profile.forumStats.topics }}
    Posts{{ profile.forumStats.posts }}
    Friends{{ profile.friends(2)|length }}
    -
    - {% if profile.profileFields or user.permission(constant('Sakura\\Perms\\Manage::USE_MANAGE'), constant('Sakura\\Perms::MANAGE')) %} - {% if user.isActive %} - - {% for name,field in profile.profileFields %} - - - - - {% endfor %} - {% if user.permission(constant('Sakura\\Perms\\Manage::USE_MANAGE'), constant('Sakura\\Perms::MANAGE')) %} - - - - - - - - - - - - - {% endif %} -
    - {{ field.name }} - - {% if name == 'youtube' %} - {% if field.youtubetype == true %}{{ profile.username }}'s Channel{% else %}{{ field.value }}{% endif %} - {% else %} - {% if field.islink %} - - {% endif %} - {{ field.value }} - {% if field.islink %} - - {% endif %} - {% endif %} -
    E-mail address{{ profile.email }}
    Register IP{{ profile.registerIp }}
    Last IP{{ profile.lastIp }}
    - {% else %} - Log in to view the full profile! - {% endif %} - {% endif %} -
    - Account Standing - {% if profile.permission(constant('Sakura\\Perms\\Site::DEACTIVATED')) %} -

    Deactivated

    - {% elseif profile.permission(constant('Sakura\\Perms\\Site::RESTRICTED')) %} -

    Restricted

    - {% elseif profile.getWarnings %} -

    Bad

    - {% else %} -

    Good

    - {% endif %} - {% if profile.getWarnings %} - - - - - - - {% for warning in profile.getWarnings %} - - - - - - {% endfor %} -
    ActionDurationReason
    {{ warning.warning_action_text }}{{ warning.warning_length }} minute{% if warning.warning_length != 1 %}s{% endif %}{{ warning.warning_reason }}
    - {% endif %} -
    -
    -
    -
    - {% endif %} -{% endblock %} diff --git a/templates/yuuno/user/report.twig b/templates/yuuno/user/report.twig deleted file mode 100644 index b982653..0000000 --- a/templates/yuuno/user/report.twig +++ /dev/null @@ -1,5 +0,0 @@ -{% extends 'global/master.twig' %} - -{% block content %} -

    I'll actually make reporting a thing, someday...

    -{% endblock %}