diff --git a/admin.php b/admin.php index 70577fe7..4f0fa940 100644 --- a/admin.php +++ b/admin.php @@ -40,6 +40,8 @@ class AdminPlugin extends Plugin */ protected $admin; + protected $popularity; + /** * @return array */ @@ -65,6 +67,9 @@ class AdminPlugin extends Plugin // } // echo "

Admin Free

"; + // + require_once PLUGINS_DIR . 'admin/classes/popularity.php'; + $this->popularity = new Popularity(); $this->initializeAdmin(); } @@ -149,7 +154,13 @@ class AdminPlugin extends Plugin $twig->twig_vars['base_url'] = $twig->twig_vars['base_url_relative']; $twig->twig_vars['admin'] = $this->admin; + // fake grav update + $twig->twig_vars['grav_update'] = array('current'=>'0.9.1', 'available'=>'0.9.2'); + switch ($this->template) { + case 'dashboard': + $twig->twig_vars['popularity'] = $this->popularity; + break; case 'pages': $twig->twig_vars['file'] = File\General::instance($this->admin->page(true)->filePath()); break; @@ -160,15 +171,10 @@ class AdminPlugin extends Plugin { echo 'system.debugger.shutdown.close_connection = false'; if ($this->config->get('plugins.admin.popularity.enabled')) { - require_once PLUGINS_DIR . 'admin/classes/popularity.php'; - $popularity = new Popularity(); - // if in admin, flush old monthly data - if ($this->active) { - $popularity->flushMonthly(); - // else track data - } else { - $popularity->trackHit(); + // Only track non-admin + if (!$this->active) { + $this->popularity->trackHit(); } } } @@ -216,6 +222,8 @@ class AdminPlugin extends Plugin require_once PLUGINS_DIR . 'admin/classes/admin.php'; $this->admin = new Admin($this->grav, $base, $this->template, $this->route); + + // And store the class into DI container. $this->grav['admin'] = $this->admin; diff --git a/admin.yaml b/admin.yaml index 23001554..3eeca1fc 100644 --- a/admin.yaml +++ b/admin.yaml @@ -3,5 +3,8 @@ route: '/admin' popularity: enabled: true ignore: ['/test*','/modular'] - visitors: 20 + history: + daily: 7 + monthly: 12 + visitors: 20 theme: grav diff --git a/classes/popularity.php b/classes/popularity.php index a74774d2..dae8c7db 100644 --- a/classes/popularity.php +++ b/classes/popularity.php @@ -105,6 +105,62 @@ class Popularity file_put_contents($this->daily_file, json_encode($this->daily_data)); } + public function getDailyChartData() + { + if (!$this->daily_data) { + $this->daily_data = $this->getData($this->daily_file); + } + + $labels = array(); + $data = array(); + + foreach ($this->daily_data as $date => $count) { + $labels[] = date('D',strtotime($date)); + $data[] = $count; + } + + return array('labels' => json_encode($labels), 'data' => json_encode($data)); + } + + public function getDailyTotal() + { + if (!$this->daily_data) { + $this->daily_data = $this->getData($this->daily_file); + } + + if (isset($this->daily_data[date(self::DAILY_FORMAT)])) { + return $this->daily_data[date(self::DAILY_FORMAT)]; + } else { + return 0; + } + } + + public function getWeeklyTotal() + { + if (!$this->daily_data) { + $this->daily_data = $this->getData($this->daily_file); + } + + $total = 0; + foreach ($this->daily_data as $daily) { + $total += $daily; + } + + return $total; + } + + public function getMonthlyTotal() + { + if (!$this->monthly_data) { + $this->monthly_data = $this->getData($this->monthly_file); + } + if (isset($this->monthly_data[date(self::MONTHLY_FORMAT)])) { + return $this->monthly_data[date(self::MONTHLY_FORMAT)]; + } else { + return 0; + } + } + protected function updateMonthly() { @@ -130,6 +186,22 @@ class Popularity file_put_contents($this->monthly_file, json_encode($this->monthly_data)); } + protected function getMonthyChartData() + { + if (!$this->monthly_data) { + $this->monthly_data = $this->getData($this->monthly_file); + } + + $labels = array(); + $data = array(); + + foreach ($this->monthly_data as $date => $count) { + $labels[] = date('M',strtotime($date)); + $data[] = $count; + } + return array('labels' => $labels, 'data' => $data); + } + protected function updateTotals($url) { if (!$this->totals_data) { diff --git a/themes/grav/css-compiled/template.css b/themes/grav/css-compiled/template.css index f5442004..9308b944 100644 --- a/themes/grav/css-compiled/template.css +++ b/themes/grav/css-compiled/template.css @@ -1,5 +1,5 @@ @import url(//fonts.googleapis.com/css?family=Montserrat:400|Lato:300,400,700); -#admin-login, #admin-logo h3, #admin-main .titlebar h1 { +#admin-login, #admin-logo h3, #admin-main .titlebar h1, #admin-main .titlebar .button-bar, #admin-dashboard .dashboard-item .button-bar .button, #admin-dashboard #updates .numeric, #admin-dashboard #popularity .stat { position: relative; top: 50%; -webkit-transform: translateY(-50%); @@ -13,11 +13,13 @@ padding: 0.3rem 1.5rem; font-size: 1.1rem; font-weight: 300; + cursor: pointer; font-family: "Lato", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; } .button i { padding-right: 5px; } .button-small.button { - padding: 3px 10px; } + padding: 2px 10px; + font-size: 1rem; } html, body { height: 100%; } @@ -36,9 +38,25 @@ a { b, strong, label, th { font-weight: 600; } +.button-bar { + text-align: right; + float: right; } + .secondary-accent { background: #349886; color: white; } + .secondary-accent .button-bar { + background: #349886; } + .secondary-accent .button { + background: #41bea8; } + +.tertiary-accent { + background: #2693b7; + color: white; } + .tertiary-accent .button-bar { + background: #2693b7; } + .tertiary-accent .button { + background: #3aafd6; } .info { background: #9055af; @@ -246,24 +264,24 @@ td { padding: 0.5rem; border: 1px solid #eaeaea; } -.button.primary { +.button { background: #41bea8; color: rgba(255, 255, 255, 0.85); border-radius: 4px; } - .button.primary:hover { + .button:hover { background: #54c5b0; color: white; } - .button.primary:active { + .button:active { box-shadow: 0 1px 0 #31907f; } -.button.secondary { - background: #29796b; - color: rgba(255, 255, 255, 0.85); - border-radius: 4px; } - .button.secondary:hover { - background: #2f8c7c; - color: white; } - .button.secondary:active { - box-shadow: 0 1px 0 #1a4b43; } + .button.secondary { + background: #29796b; + color: rgba(255, 255, 255, 0.85); + border-radius: 4px; } + .button.secondary:hover { + background: #2f8c7c; + color: white; } + .button.secondary:active { + box-shadow: 0 1px 0 #1a4b43; } #error { text-align: center; @@ -392,14 +410,40 @@ td { #admin-main { margin-left: 20%; } + #admin-main h1 { + margin: 0; + font-size: 1.5rem; + text-align: left; + letter-spacing: -1px; } #admin-main .titlebar { height: 4.2rem; padding: 0 3rem; } - #admin-main .titlebar h1 { - margin: 0; - font-size: 1.5rem; - text-align: left; - letter-spacing: -1px; } + #admin-main .titlebar .button-bar { + padding: 0; } + #admin-main .grav-update { + height: 3rem; + padding: 0 3rem; + background: #9055af; } + #admin-main .grav-update .button { + margin-left: 1rem; + line-height: 1.5; + background: #73448c; + color: rgba(255, 255, 255, 0.85); + border-radius: 4px; } + #admin-main .grav-update .button:hover { + background: #814c9d; + color: white; } + #admin-main .grav-update .button:active { + box-shadow: 0 1px 0 #513063; } + #admin-main .grav-update p { + line-height: 3rem; + margin: 0; } + #admin-main .grav-update i { + padding-right: 0.5rem; } + #admin-main .grav-update .less { + color: rgba(255, 255, 255, 0.75); } + #admin-main .grav-update + .content-padding { + top: 7.2rem; } #admin-main .content-padding { position: absolute; top: 4.2rem; @@ -411,6 +455,117 @@ td { #admin-main .admin-block { background: #eeeeee; color: #737c81; - padding: 3rem; } + padding: 2rem 0; } + #admin-main .admin-block h1 { + padding: 0 3rem 0.5rem; + margin: 0 0 1rem; + border-bottom: 3px solid #e1e1e1; } + #admin-main .admin-block .button-bar { + margin-right: 3rem; } + #admin-main td { + border: 0; + border-bottom: 1px solid #e1e1e1; } + #admin-main tr td:first-child { + padding-left: 3rem; } + #admin-main tr td:last-child { + text-align: right; + padding-right: 3rem; } + #admin-main tr:last-child td { + border-bottom: 0; } + +#admin-dashboard:after { + content: ""; + display: table; + clear: both; } +#admin-dashboard .dashboard-item { + float: left; + width: 50%; + margin-bottom: 2.5rem; } + #admin-dashboard .dashboard-item > div { + padding: 1rem 2rem; } + #admin-dashboard .dashboard-item .button-bar { + margin: 1rem -2rem -1rem; + height: 70px; + padding: 0 1rem; + float: none; } +#admin-dashboard .dashboard-left { + padding-right: 1.25rem; } +#admin-dashboard .dashboard-right { + padding-left: 1.25rem; } +#admin-dashboard #updates p { + text-align: center; + color: rgba(255, 255, 255, 0.95); + margin: 0; } +#admin-dashboard #updates .updates-chart { + width: 50%; + float: left; } +#admin-dashboard #updates .chart-wrapper { + position: relative; } +#admin-dashboard #updates .backups-chart { + position: relative; + width: 50%; + float: left; } +#admin-dashboard #updates .numeric { + display: block; + position: absolute; + width: 100%; + text-align: center; + font-size: 1.7rem; + line-height: 1; } + #admin-dashboard #updates .numeric em { + display: block; + font-style: normal; + font-size: 1rem; + color: rgba(255, 255, 255, 0.85); } +#admin-dashboard #updates .admin-update-charts { + min-height: 191px; } + #admin-dashboard #updates .admin-update-charts:after { + content: ""; + display: table; + clear: both; } +#admin-dashboard #updates .button { + margin-left: 0.5rem; } +#admin-dashboard #popularity p { + text-align: center; + color: rgba(255, 255, 255, 0.95); + margin: 0; } +#admin-dashboard #popularity .button-bar { + height: 100px; + padding: 0 1rem; } +#admin-dashboard #popularity .stat { + display: block; + float: left; + width: 33%; + text-align: center; } + #admin-dashboard #popularity .stat b { + display: block; + font-size: 2.5rem; + line-height: 1; + font-weight: 300; } + #admin-dashboard #popularity .stat i { + display: block; + font-style: normal; + color: rgba(255, 255, 255, 0.75); } +#admin-dashboard .tertiary-accent { + background-color: #2693b7; + background-image: -webkit-linear-gradient(#2693b7, #64c0df); + background-image: linear-gradient(#2693b7, #64c0df); } +#admin-dashboard .secondary-accent { + background-color: #349886; + background-image: -webkit-linear-gradient(#349886, #67cbb9); + background-image: linear-gradient(#349886, #67cbb9); } + +#footer { + text-align: center; + padding: 3rem 0 1rem; } + +.ct-chart .ct-series .ct-bar { + stroke-width: 15px; } +.ct-chart .ct-series.ct-series-a .ct-bar { + stroke: rgba(255, 255, 255, 0.85) !important; } +.ct-chart .ct-series.ct-series-a .ct-slice.ct-donut { + stroke: white !important; } +.ct-chart .ct-series.ct-series-b .ct-slice.ct-donut { + stroke: rgba(255, 255, 255, 0.2) !important; } /*# sourceMappingURL=template.css.map */ diff --git a/themes/grav/css-compiled/template.css.map b/themes/grav/css-compiled/template.css.map index 02ad3890..400917f3 100644 --- a/themes/grav/css-compiled/template.css.map +++ b/themes/grav/css-compiled/template.css.map @@ -1,7 +1,7 @@ { "version": 3, -"mappings": "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", -"sources": ["../scss/template/_fonts.scss","../scss/nucleus/mixins/_utilities.scss","../scss/template/modules/_buttons.scss","../scss/configuration/template/_typography.scss","../scss/template/_core.scss","../scss/configuration/template/_colors.scss","../scss/configuration/template/_bullets.scss","../scss/configuration/template/_variables.scss","../scss/template/_extensions.scss","../scss/vendor/bourbon/addons/_prefixer.scss","../scss/nucleus/mixins/_breakpoints.scss","../scss/template/_typography.scss","../scss/configuration/nucleus/_typography.scss","../scss/template/_forms.scss","../scss/template/_tables.scss","../scss/template/_buttons.scss","../scss/template/_errors.scss","../scss/template/_login.scss","../scss/vendor/bourbon/css3/_placeholder.scss","../scss/template/_admin.scss"], +"mappings": "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", +"sources": ["../scss/template/_fonts.scss","../scss/nucleus/mixins/_utilities.scss","../scss/template/modules/_buttons.scss","../scss/configuration/template/_typography.scss","../scss/template/_core.scss","../scss/configuration/template/_colors.scss","../scss/configuration/template/_bullets.scss","../scss/configuration/template/_variables.scss","../scss/template/_extensions.scss","../scss/vendor/bourbon/addons/_prefixer.scss","../scss/nucleus/mixins/_breakpoints.scss","../scss/template/_typography.scss","../scss/configuration/nucleus/_typography.scss","../scss/template/_forms.scss","../scss/template/_tables.scss","../scss/template/_buttons.scss","../scss/template/_errors.scss","../scss/template/_login.scss","../scss/vendor/bourbon/css3/_placeholder.scss","../scss/template/_admin.scss","../scss/vendor/bourbon/addons/_clearfix.scss","../scss/vendor/bourbon/css3/_linear-gradient.scss"], "names": [], "file": "template.css" } \ No newline at end of file diff --git a/themes/grav/css/chartist.min.css b/themes/grav/css/chartist.min.css new file mode 100644 index 00000000..cca96cb4 --- /dev/null +++ b/themes/grav/css/chartist.min.css @@ -0,0 +1,7 @@ +/* Chartist.js 0.1.11 + * Copyright © 2014 Gion Kunz + * Free to use under the WTFPL license. + * http://www.wtfpl.net/ + */ + +.ct-chart .ct-label{fill:rgba(0,0,0,.4);font-size:.75rem}.ct-chart .ct-grid{stroke:rgba(0,0,0,.2);stroke-width:1px;stroke-dasharray:2px}.ct-chart .ct-point{stroke-width:10px;stroke-linecap:round}.ct-chart .ct-line{fill:none;stroke-width:4px}.ct-chart .ct-bar{fill:none;stroke-width:10px}.ct-chart .ct-slice.ct-donut{fill:none;stroke-width:60px}.ct-chart .ct-series.ct-series-a .ct-bar,.ct-chart .ct-series.ct-series-a .ct-line,.ct-chart .ct-series.ct-series-a .ct-point,.ct-chart .ct-series.ct-series-a .ct-slice.ct-donut{stroke:#d70206}.ct-chart .ct-series.ct-series-a .ct-slice:not(.ct-donut){fill:#d70206}.ct-chart .ct-series.ct-series-b .ct-bar,.ct-chart .ct-series.ct-series-b .ct-line,.ct-chart .ct-series.ct-series-b .ct-point,.ct-chart .ct-series.ct-series-b .ct-slice.ct-donut{stroke:#F05B4F}.ct-chart .ct-series.ct-series-b .ct-slice:not(.ct-donut){fill:#F05B4F}.ct-chart .ct-series.ct-series-c .ct-bar,.ct-chart .ct-series.ct-series-c .ct-line,.ct-chart .ct-series.ct-series-c .ct-point,.ct-chart .ct-series.ct-series-c .ct-slice.ct-donut{stroke:#F4C63D}.ct-chart .ct-series.ct-series-c .ct-slice:not(.ct-donut){fill:#F4C63D}.ct-chart .ct-series.ct-series-d .ct-bar,.ct-chart .ct-series.ct-series-d .ct-line,.ct-chart .ct-series.ct-series-d .ct-point,.ct-chart .ct-series.ct-series-d .ct-slice.ct-donut{stroke:#453D3F}.ct-chart .ct-series.ct-series-d .ct-slice:not(.ct-donut){fill:#453D3F}.ct-chart.ct-perfect-fourth{display:block;position:relative;width:100%}.ct-chart.ct-perfect-fourth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:75%}.ct-chart.ct-perfect-fourth:after{content:"";display:table;clear:both}.ct-chart.ct-perfect-fourth>svg{display:block;position:absolute;top:0;left:0;width:100%;height:100%}.ct-chart.ct-golden-section{display:block;position:relative;width:100%}.ct-chart.ct-golden-section:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:61.8047%}.ct-chart.ct-golden-section:after{content:"";display:table;clear:both}.ct-chart.ct-golden-section>svg{display:block;position:absolute;top:0;left:0;width:100%;height:100%}.ct-chart.ct-minor-seventh{display:block;position:relative;width:100%}.ct-chart.ct-minor-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:56.25%}.ct-chart.ct-minor-seventh:after{content:"";display:table;clear:both}.ct-chart.ct-minor-seventh>svg{display:block;position:absolute;top:0;left:0;width:100%;height:100%}.ct-chart.ct-square{display:block;position:relative;width:100%}.ct-chart.ct-square:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:100%}.ct-chart.ct-square:after{content:"";display:table;clear:both}.ct-chart.ct-square>svg{display:block;position:absolute;top:0;left:0;width:100%;height:100%}.ct-chart.ct-octave{display:block;position:relative;width:100%}.ct-chart.ct-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:50%}.ct-chart.ct-octave:after{content:"";display:table;clear:both}.ct-chart.ct-octave>svg{display:block;position:absolute;top:0;left:0;width:100%;height:100%}.ct-chart.ct-major-twelfth{display:block;position:relative;width:100%}.ct-chart.ct-major-twelfth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:33.33333%}.ct-chart.ct-major-twelfth:after{content:"";display:table;clear:both}.ct-chart.ct-major-twelfth>svg{display:block;position:absolute;top:0;left:0;width:100%;height:100%}.ct-chart.ct-double-octave{display:block;position:relative;width:100%}.ct-chart.ct-double-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:25%}.ct-chart.ct-double-octave:after{content:"";display:table;clear:both}.ct-chart.ct-double-octave>svg{display:block;position:absolute;top:0;left:0;width:100%;height:100%} \ No newline at end of file diff --git a/themes/grav/css/font-awesome.min.css b/themes/grav/css/font-awesome.min.css index 3d920fc8..ec53d4d6 100644 --- a/themes/grav/css/font-awesome.min.css +++ b/themes/grav/css/font-awesome.min.css @@ -1,4 +1,4 @@ /*! - * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.1.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.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:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes 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);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-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);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.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:#fff}.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-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{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:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.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{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-square:before,.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-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-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"} \ No newline at end of file + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.2.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.2.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}.fa-lg{font-size:1.33333333em;line-height:.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:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.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}@-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:#fff}.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:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.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{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-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"} \ No newline at end of file diff --git a/themes/grav/fonts/FontAwesome.otf b/themes/grav/fonts/FontAwesome.otf index 8b0f54e4..81c9ad94 100644 Binary files a/themes/grav/fonts/FontAwesome.otf and b/themes/grav/fonts/FontAwesome.otf differ diff --git a/themes/grav/fonts/fontawesome-webfont.eot b/themes/grav/fonts/fontawesome-webfont.eot index 6cfd5660..84677bc0 100644 Binary files a/themes/grav/fonts/fontawesome-webfont.eot and b/themes/grav/fonts/fontawesome-webfont.eot differ diff --git a/themes/grav/fonts/fontawesome-webfont.svg b/themes/grav/fonts/fontawesome-webfont.svg index a9f84695..d907b25a 100644 --- a/themes/grav/fonts/fontawesome-webfont.svg +++ b/themes/grav/fonts/fontawesome-webfont.svg @@ -32,473 +32,489 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - \ No newline at end of file diff --git a/themes/grav/fonts/fontawesome-webfont.ttf b/themes/grav/fonts/fontawesome-webfont.ttf index 5cd6cff6..96a3639c 100644 Binary files a/themes/grav/fonts/fontawesome-webfont.ttf and b/themes/grav/fonts/fontawesome-webfont.ttf differ diff --git a/themes/grav/fonts/fontawesome-webfont.woff b/themes/grav/fonts/fontawesome-webfont.woff index 9eaecb37..628b6a52 100644 Binary files a/themes/grav/fonts/fontawesome-webfont.woff and b/themes/grav/fonts/fontawesome-webfont.woff differ diff --git a/themes/grav/js/chartist.min.js b/themes/grav/js/chartist.min.js new file mode 100644 index 00000000..78b108c8 --- /dev/null +++ b/themes/grav/js/chartist.min.js @@ -0,0 +1,8 @@ +/* Chartist.js 0.1.11 + * Copyright © 2014 Gion Kunz + * Free to use under the WTFPL license. + * http://www.wtfpl.net/ + */ + +!function(a,b){"object"==typeof exports?module.exports=b():"function"==typeof define&&define.amd?define([],b):a.Chartist=b()}(this,function(){var a={};return a.version="0.1.11",function(a,b,c){"use strict";c.noop=function(a){return a},c.alphaNumerate=function(a){return String.fromCharCode(97+a%26)},c.extend=function(a,b){a=a||{};for(var d in b)a[d]="object"==typeof b[d]?c.extend(a[d],b[d]):b[d];return a},c.getHeight=function(a){return a.clientHeight||Math.round(a.getBBox().height)||a.parentNode.clientHeight},c.getWidth=function(a){return a.clientWidth||Math.round(a.getBBox().width)||a.parentNode.clientWidth},c.createSvg=function(a,d,e,f){var g,h=a.nodeType?a:b.querySelector(a);if(!h)throw'Container node with selector "'+a+'" not found';return void 0!==h._ctChart?(g=h._ctChart.attr({width:d||"100%",height:e||"100%"}).removeAllClasses().addClass(f),g.empty()):(g=c.svg("svg").attr({width:d||"100%",height:e||"100%"}).addClass(f),h.appendChild(g._node),h._ctChart=g),g},c.getDataArray=function(a){for(var b=[],c=0;cd;d++)a[c][d]=0;return a},c.orderOfMagnitude=function(a){return Math.floor(Math.log(Math.abs(a))/Math.LN10)},c.projectLength=function(a,b,d,e){var f=c.getAvailableHeight(a,e);return b/d.range*f},c.getAvailableHeight=function(a,b){return c.getHeight(a._node)-2*b.chartPadding-b.axisX.offset},c.getHighLow=function(a){var b,c,d={high:-Number.MAX_VALUE,low:Number.MAX_VALUE};for(b=0;bd.high&&(d.high=a[b][c]),a[b][c]=d.axisY.scaleMinSpace))break;i.step/=2}for(g=i.min,h=i.max,f=i.min;f<=i.max;f+=i.step)f+i.stepi.high&&(h-=i.step);for(i.min=g,i.max=h,i.range=i.max-i.min,i.values=[],f=i.min;f<=i.max;f+=i.step)i.values.push(f);return i},c.calculateLabelOffset=function(a,b,c,d,e){for(var f=0,g=0;gd;d+=2){var f=[{x:+a[d-2],y:+a[d-1]},{x:+a[d],y:+a[d+1]},{x:+a[d+2],y:+a[d+3]},{x:+a[d+4],y:+a[d+5]}];b?d?e-4===d?f[3]={x:+a[0],y:+a[1]}:e-2===d&&(f[2]={x:+a[0],y:+a[1]},f[3]={x:+a[2],y:+a[3]}):f[0]={x:+a[e-2],y:+a[e-1]}:e-4===d?f[3]=f[2]:d||(f[0]={x:+a[d],y:+a[d+1]}),c.push([(-f[0].x+6*f[1].x+f[2].x)/6,(-f[0].y+6*f[1].y+f[2].y)/6,(f[1].x+6*f[2].x-f[3].x)/6,(f[1].y+6*f[2].y-f[3].y)/6,f[2].x,f[2].y])}return c}}(window,document,a),function(a,b,c){"use strict";c.svg=function(a,d,e,f){function g(a,b){return Object.keys(b).forEach(function(c){a.setAttribute(c,b[c])}),a}function h(a,c,d,e,f){var h=b.createElementNS(p,c);return h._ctSvgElement=a,f&&f.appendChild(h),d&&g(h,d),e&&m(h,e),h}function i(a,c){a.appendChild(b.createTextNode(c))}function j(a){for(;a.firstChild;)a.removeChild(a.firstChild)}function k(a){a.parentNode.removeChild(a)}function l(a){return a.getAttribute("class")?a.getAttribute("class").trim().split(/\s+/):[]}function m(a,b){a.setAttribute("class",l(a).concat(b.trim().split(/\s+/)).filter(function(a,b,c){return c.indexOf(a)===b}).join(" "))}function n(a,b){var c=b.trim().split(/\s+/);a.setAttribute("class",l(a).filter(function(a){return-1===c.indexOf(a)}).join(" "))}function o(a){a.className=""}var p="http://www.w3.org/2000/svg";return{_node:h(this,a,d,e,f?f._node:void 0),_parent:f,parent:function(){return this._parent},attr:function(a){return g(this._node,a),this},empty:function(){return j(this._node),this},remove:function(){return k(this._node),this},elem:function(a,b,d){return c.svg(a,b,d,this)},text:function(a){return i(this._node,a),this},addClass:function(a){return m(this._node,a),this},removeClass:function(a){return n(this._node,a),this},removeAllClasses:function(){return o(this._node),this},classes:function(){return l(this._node)}}}}(window,document,a),function(a,b,c){"use strict";c.Line=function(b,d,e,f){function g(a){var e,f,g,h=[],j=c.normalizeDataArray(c.getDataArray(d),d.labels.length);i=c.createSvg(b,a.width,a.height,a.classNames.chart),g=c.getBounds(i,j,a),e=a.axisX.offset,a.axisX.showLabel&&(e+=c.calculateLabelOffset(i,d.labels,[a.classNames.label,a.classNames.horizontal].join(" "),a.axisX.labelInterpolationFnc,c.getHeight)),f=a.axisY.offset,a.axisY.showLabel&&(f+=c.calculateLabelOffset(i,g.values,[a.classNames.label,a.classNames.horizontal].join(" "),a.axisY.labelInterpolationFnc,c.getWidth));var k=c.createChartRect(i,a,e,f),l=i.elem("g"),m=i.elem("g");c.createXAxis(k,d,m,l,a),c.createYAxis(k,g,m,l,f,a);for(var n=0;n4)for(var t=c.catmullRom2bezier(q),u=0;ua.x;return d&&"explode"===c||!d&&"implode"===c?"start":d&&"implode"===c||!d&&"explode"===c?"end":"middle"}function h(a){var e,f,h,i,k=[],l=a.startAngle,m=c.getDataArray(d);j=c.createSvg(b,a.width,a.height,a.classNames.chart),e=c.createChartRect(j,a,0,0),f=Math.min(e.width()/2,e.height()/2),i=a.total||m.reduce(function(a,b){return a+b},0),f-=a.donut?a.donutWidth/2:0,h=a.donut?f:f/2,h+=a.labelOffset;for(var n={x:e.x1+e.width()/2,y:e.y2+e.height()/2},o=0;o=p-l?"0":"1",t=["M",r.x,r.y,"A",f,f,0,s,0,q.x,q.y];a.donut===!1&&t.push("L",n.x,n.y);var u=k[o].elem("path",{d:t.join(" ")},a.classNames.slice+(a.donut?" "+a.classNames.donut:""));if(a.donut===!0&&u.attr({style:"stroke-width: "+ +a.donutWidth+"px"}),a.showLabel){var v=c.polarToCartesian(n.x,n.y,h,l+(p-l)/2),w=a.labelInterpolationFnc(d.labels?d.labels[o]:m[o],o);k[o].elem("text",{dx:v.x,dy:v.y,"text-anchor":g(n,v,a.labelDirection),text:""+w},a.classNames.label).text(""+w)}l=p}}var i,j,k={width:void 0,height:void 0,chartPadding:5,classNames:{chart:"ct-chart-pie",series:"ct-series",slice:"ct-slice",donut:"ct-donut",label:"ct-label"},startAngle:0,total:void 0,donut:!1,donutWidth:60,showLabel:!0,labelOffset:0,labelInterpolationFnc:c.noop,labelOverflow:!1,labelDirection:"neutral"};return i=c.optionsProvider(k,e,f,function(a){i=a,h(i)}),a.addEventListener("resize",function(){h(i)}),{version:c.version,update:function(){h(i)}}}}(window,document,a),a}); +//# sourceMappingURL=chartist.min.map \ No newline at end of file diff --git a/themes/grav/scss/configuration/template/_colors.scss b/themes/grav/scss/configuration/template/_colors.scss index b5ba4aa2..d9940b22 100644 --- a/themes/grav/scss/configuration/template/_colors.scss +++ b/themes/grav/scss/configuration/template/_colors.scss @@ -15,6 +15,8 @@ $darker-accent-bg: shade($accent-bg,12%); $darker-accent-fg: shade($accent-fg,10%); $secondary-accent-bg: #349886; $secondary-accent-fg: #fff; +$tertiary-accent-bg: #2693B7; +$tertiary-accent-fg: #fff; $info-bg: #9055AF; $info-fg: #fff; $content-bg: #EEEEEE; diff --git a/themes/grav/scss/template/_admin.scss b/themes/grav/scss/template/_admin.scss index 88ae277b..a44592b5 100644 --- a/themes/grav/scss/template/_admin.scss +++ b/themes/grav/scss/template/_admin.scss @@ -1,6 +1,7 @@ $sidebar-width: 20%; $sidebar-padding: 2rem; $topbar-height: 4.2rem; +$update-height: 3rem; #admin-sidebar { position: absolute; @@ -119,18 +120,55 @@ $topbar-height: 4.2rem; #admin-main { margin-left: $sidebar-width; + h1 { + margin: 0; + font-size: 1.5rem; + text-align: left; + letter-spacing: -1px; + } + .titlebar { height: $topbar-height; padding: 0 $padding-default; h1 { - margin: 0; @extend %vertical-align; - font-size: 1.5rem; - text-align: left; - letter-spacing: -1px; } + + .button-bar { + @extend %vertical-align; + padding: 0; + } + } + + .grav-update { + height: $update-height; + padding: 0 $padding-default; + background: $info-bg; + + .button { + margin-left: 1rem; + line-height: 1.5; + @include button-color(shade($info-bg, 20%)); + } + + p { + line-height: $update-height; + margin: 0; + } + + i { + padding-right: 0.5rem; + } + + .less { + color: rgba($white,0.75); + } + } + + .grav-update + .content-padding { + top: $topbar-height + $update-height; } .content-padding { @@ -146,6 +184,201 @@ $topbar-height: 4.2rem; .admin-block { background: $content-bg; color: $content-fg; - padding: $padding-default; + padding: 2rem 0; + + h1 { + padding: 0 $padding-default 0.5rem; + margin: 0 0 1rem; + border-bottom: 3px solid darken($content-bg, 5%); + } + + .button-bar { + margin-right: $padding-default; + } + } + + td { + border: 0; + border-bottom: 1px solid darken($content-bg, 5%); + } + + tr { + td { + + &:first-child { + padding-left: $padding-default; + } + + &:last-child { + text-align: right; + padding-right: $padding-default; + } + } + + &:last-child { + td { + border-bottom: 0; + } + } } } + +#admin-dashboard { + + @include clearfix; + + .dashboard-item { + float: left; + width: 50%; + margin-bottom: 2.5rem; + + > div { + padding: 1rem 2rem; + } + + .button-bar { + margin: 1rem -2rem -1rem; + height: 70px; + padding: 0 1rem; + float: none; + .button { + @extend %vertical-align; + } + } + } + + .dashboard-left { + padding-right: 1.25rem; + } + + .dashboard-right { + padding-left: 1.25rem; + + } + + #updates { + + p { + text-align: center; + color: rgba($white,0.95); + margin: 0; + } + + .updates-chart { + width: 50%; + float: left; + + } + + .chart-wrapper { + position: relative; + } + + .backups-chart { + position: relative; + width: 50%; + float: left; + } + + + .numeric { + display: block; + position: absolute; + width: 100%; + text-align: center; + font-size: 1.7rem; + line-height: 1; + @extend %vertical-align; + + + em { + display:block; + font-style: normal; + font-size: 1rem; + color: rgba($white, .85); + } + + } + + .admin-update-charts { + @include clearfix; + min-height: 191px; + } + + .button { + margin-left: 0.5rem; + } + } + + #popularity { + p { + text-align: center; + color: rgba($white,0.95); + margin: 0; + } + .button-bar { + height: 100px; + padding: 0 1rem; + + } + .stat { + @extend %vertical-align; + display:block; + float: left; + width: 33%; + text-align: center; + b { + display: block; + font-size: 2.5rem; + line-height: 1; + font-weight: 300; + } + i { + display: block; + font-style: normal; + color: rgba($white, 0.75); + } + } + } + + + .tertiary-accent { + @include linear-gradient($tertiary-accent-bg, lighten($tertiary-accent-bg,20%)); + } + + .secondary-accent { + @include linear-gradient($secondary-accent-bg, lighten($secondary-accent-bg,20%)); + } +} + +#footer { + text-align: center; + padding: 3rem 0 1rem; +} + +.ct-chart { + .ct-series { + .ct-bar { + stroke-width: 15px; + + } + &.ct-series-a { + .ct-bar { + stroke: rgba($white, 0.85) !important; + } + .ct-slice.ct-donut { + stroke: $white !important; + } + } + &.ct-series-b { + .ct-slice.ct-donut { + stroke: rgba($white, 0.2) !important; + } + } + + + } +} + + + diff --git a/themes/grav/scss/template/_buttons.scss b/themes/grav/scss/template/_buttons.scss index 9999710b..1ef21711 100644 --- a/themes/grav/scss/template/_buttons.scss +++ b/themes/grav/scss/template/_buttons.scss @@ -1,9 +1,6 @@ .button { @extend %button; - - &.primary { - @include button-color(lighten($secondary-accent-bg, 10%)); - } + @include button-color(lighten($secondary-accent-bg, 10%)); &.secondary { @include button-color(shade($secondary-accent-bg, 20%)); diff --git a/themes/grav/scss/template/_core.scss b/themes/grav/scss/template/_core.scss index 86823701..caed0fb1 100644 --- a/themes/grav/scss/template/_core.scss +++ b/themes/grav/scss/template/_core.scss @@ -20,9 +20,35 @@ b, strong { font-weight: $font-weight-bold } +.button-bar { + text-align: right; + float: right; +} + .secondary-accent { background: $secondary-accent-bg; color: $secondary-accent-fg; + + .button-bar { + background: $secondary-accent-bg; + } + + .button { + background: lighten($secondary-accent-bg, 10%); + } +} + +.tertiary-accent { + background: $tertiary-accent-bg; + color: $tertiary-accent-fg; + + .button-bar { + background: $tertiary-accent-bg; + } + + .button { + background: lighten($tertiary-accent-bg, 10%); + } } .info { diff --git a/themes/grav/scss/template/modules/_buttons.scss b/themes/grav/scss/template/modules/_buttons.scss index 5ffbfb7d..626f271c 100644 --- a/themes/grav/scss/template/modules/_buttons.scss +++ b/themes/grav/scss/template/modules/_buttons.scss @@ -3,6 +3,7 @@ padding: 0.3rem 1.5rem; font-size: 1.1rem; font-weight: 300; + cursor: pointer; font-family: $font-family-default; @@ -11,8 +12,8 @@ } &.button-small { - padding: 3px 10px; - + padding: 2px 10px; + font-size: 1rem; } } diff --git a/themes/grav/templates/dashboard.html.twig b/themes/grav/templates/dashboard.html.twig index c374d16e..90ba698c 100644 --- a/themes/grav/templates/dashboard.html.twig +++ b/themes/grav/templates/dashboard.html.twig @@ -1,74 +1,128 @@ {% extends 'partials/base.html.twig' %} {% block titlebar %} +
+ +

Dashboard

{% endblock %} -{% block content %} - - - {% for latest in admin.latestPages %} - - - - {% endfor %} -
{{ latest.title }}{{ latest.url }}{{ latest.modified|date }}
- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+{% block content_top %} +
+
+
+

Maintenance

+
+
+
+
+ + 75%updated +
+

Updates Available

+
+
+
+
+ + 13days +
+

Last Backup

+
+
+
+ + +
+
+
+
+
+

Statistics

+
+ +

Daily Activity

+
+ + {{ popularity.getDailyTotal }} + Today + + + {{ popularity.getWeeklyTotal }} + Week + + + {{ popularity.getMonthlyTotal }} + Month + +
+
+
+
+ +{% endblock %} + +{% block content %} +
+
+ +
+

Latest Page Updates

+ + {% for latest in admin.latestPages %} + + + + {% endfor %} +
{{ latest.title }}{{ latest.route }}{{ latest.modified|date('H:i') }} - {{ latest.modified|date('m/d/Y') }}
+ +
{% endblock %} diff --git a/themes/grav/templates/partials/base.html.twig b/themes/grav/templates/partials/base.html.twig index 43a4a788..c51fdf9b 100644 --- a/themes/grav/templates/partials/base.html.twig +++ b/themes/grav/templates/partials/base.html.twig @@ -18,6 +18,7 @@ +