- fixed missing favicon folder on error pages; #421

- fixed "subfolder" setup issue, resources have not been loaded properly
This commit is contained in:
Exodus4D
2017-01-14 16:57:01 +01:00
parent aa78d0c4e0
commit 0343744ad5
2 changed files with 19 additions and 20 deletions

View File

@@ -8,7 +8,7 @@ SERVER = DEVELOP
[ENVIRONMENT.DEVELOP]
; path to index.php (Default: leave blank == "auto-detect")
; -> e.g. set pathfinder/ if your URL looks like https://www.[YOUR_DOMAIN]/pathfinder (subfolder)
; -> e.g. set /pathfinder if your URL looks like https://www.[YOUR_DOMAIN]/pathfinder (subfolder)
BASE =
; deployment URL (e.g. http://localhost)
URL = http://pathfinder.local
@@ -52,7 +52,7 @@ SMTP_ERROR = pathfinder@localhost.com
[ENVIRONMENT.PRODUCTION]
; path to index.php (Default: leave blank == "auto-detect")
; -> e.g. set pathfinder/ if your URL looks like https://www.[YOUR_DOMAIN]/pathfinder (subfolder)
; -> e.g. set /pathfinder if your URL looks like https://www.[YOUR_DOMAIN]/pathfinder (subfolder)
BASE =
; deployment URL (e.g. https://www.pathfinder-w.space)
URL = https://www.pathfinder-w.space

View File

@@ -7,20 +7,20 @@
<meta http-equiv="cache-control" content="public">
<link rel="apple-touch-icon" sizes="57x57" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="{{ @BASE }}{{ @FAVICON }}apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="{{ @BASE }}{{ @FAVICON }}favicon-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="{{ @BASE }}{{ @FAVICON }}favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="{{ @BASE }}{{ @FAVICON }}favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="{{ @BASE }}{{ @FAVICON }}favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="{{ @BASE }}{{ @FAVICON }}favicon-32x32.png" sizes="32x32">
<link rel="apple-touch-icon" sizes="57x57" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="{{ @BASE }}/{{ @FAVICON }}apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="{{ @BASE }}/{{ @FAVICON }}favicon-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="{{ @BASE }}/{{ @FAVICON }}favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="{{ @BASE }}/{{ @FAVICON }}favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="{{ @BASE }}/{{ @FAVICON }}favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="{{ @BASE }}/{{ @FAVICON }}favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#2d89ef">
<meta name="msapplication-TileImage" content="{{ @BASE }}{{ @FAVICON }}mstile-144x144.png">
@@ -52,16 +52,15 @@
{* Youtube verification code *}
<meta name="google-site-verification" content="sHoh0gfMw3x1wiwLTK5OsKsxt7kRgxi69hRgWEGh9DQ" />
<link rel="stylesheet" type="text/css" media="screen" href="{{ @BASE }}public/css/pathfinder.css?{{ @PATHFINDER.VERSION }}">
<link rel="stylesheet" type="text/css" media="screen" href="{{ @BASE }}/public/css/pathfinder.css?{{ @PATHFINDER.VERSION }}">
</head>
<body class="{{ @bodyClass }}" data-js-path="{{ @pathJs }}" data-script="{{ @jsView }}" data-version="{{ @PATHFINDER.VERSION }}">
<body class="{{ @bodyClass }}" data-js-path="{{ @BASE }}/{{ @pathJs }}" data-script="{{ @jsView }}" data-version="{{ @PATHFINDER.VERSION }}">
<include if="{{ @pageContent }}" href="{{ @pageContent }}"/>
<!-- Hey dude! Where is all the magic? -->
<script data-main="{{ @BASE }}{{ @pathJs }}/app" src="{{ @BASE }}{{ @pathJs }}/lib/require.js" ></script>
<script data-main="{{ @BASE }}/{{ @pathJs }}/app" src="{{ @BASE }}/{{ @pathJs }}/lib/require.js" ></script>
</body>
</html>