This commit is contained in:
Roman Hergenreder 2020-07-02 01:20:50 +02:00
parent 76e411b0e9
commit a0178ab96e
4 changed files with 357 additions and 13097 deletions

@ -1,6 +1,6 @@
<?php <?php
define("WEBBASE_VERSION", "0.1.0-alpha"); define("WEBBASE_VERSION", "1.0.0");
function getProtocol() { function getProtocol() {
return (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https" : "http"; return (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https" : "http";

13448
js/admin.min.js vendored

File diff suppressed because one or more lines are too long

@ -22,7 +22,7 @@
"sanitize-html": "^1.27.0" "sanitize-html": "^1.27.0"
}, },
"scripts": { "scripts": {
"build": "webpack --mode development && mv dist/main.js ../js/admin.min.js" "build": "webpack --mode production && mv dist/main.js ../js/admin.min.js"
}, },
"eslintConfig": { "eslintConfig": {
"extends": "react-app" "extends": "react-app"

@ -5,7 +5,7 @@ export default function Footer() {
return ( return (
<footer className={"main-footer"}> <footer className={"main-footer"}>
Theme: <strong>Copyright © 2014-2019 <a href={"http://adminlte.io"}>AdminLTE.io</a>. <b>Version</b> 3.0.3</strong>&nbsp; Theme: <strong>Copyright © 2014-2019 <a href={"http://adminlte.io"}>AdminLTE.io</a>. <b>Version</b> 3.0.3</strong>&nbsp;
CMS: <strong><a href={"http://git.romanh.de/Projekte/webbase.io"}>WebBase</a></strong>. <b>Version</b> 0.1.0-alpha CMS: <strong><a href={"http://git.romanh.de/Projekte/webbase.io"}>WebBase</a></strong>. <b>Version</b> 1.0.0
</footer> </footer>
) )
} }