diff options
| author | Camil Staps | 2016-09-04 23:30:15 +0200 | 
|---|---|---|
| committer | Camil Staps | 2016-09-04 23:30:15 +0200 | 
| commit | c61b156f1bd93ec4aadd8adc78523b42b0232918 (patch) | |
| tree | cd9bcb6f889dcf554818246957bed54eb14c9fbe /resources/views/layouts/master.blade.php | |
| parent | Use blade templates (diff) | |
User creation and authentication
Diffstat (limited to 'resources/views/layouts/master.blade.php')
| -rw-r--r-- | resources/views/layouts/master.blade.php | 11 | 
1 files changed, 5 insertions, 6 deletions
| diff --git a/resources/views/layouts/master.blade.php b/resources/views/layouts/master.blade.php index 43c1a24..3c111da 100644 --- a/resources/views/layouts/master.blade.php +++ b/resources/views/layouts/master.blade.php @@ -20,9 +20,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  	<head>  		<meta charset="utf-8">  		<title>ParseTrainer</title> -		<link rel="stylesheet" href="vendor/twbs/bootstrap/dist/css/bootstrap.min.css"> -		<link rel="stylesheet" href="vendor/twbs/bootstrap/dist/css/bootstrap-theme.min.css"> -		<link rel="stylesheet" href="public/css/hebrewparsetrainer.css"> +		<link rel="stylesheet" href="{{ env('APP_URL') }}vendor/twbs/bootstrap/dist/css/bootstrap.min.css"> +		<link rel="stylesheet" href="{{ env('APP_URL') }}public/css/hebrewparsetrainer.css">  	</head>  	<body role="application">  		<div class="container" role="main"> @@ -33,8 +32,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  			@yield('master-content')  		</div> -		<script src="vendor/components/jquery/jquery.min.js"></script> -		<script src="vendor/twbs/bootstrap/dist/js/bootstrap.min.js"></script> -		<script src="public/js/hebrewparsetrainer.js"></script> +		<script src="{{ env('APP_URL') }}vendor/components/jquery/jquery.min.js"></script> +		<script src="{{ env('APP_URL') }}vendor/twbs/bootstrap/dist/js/bootstrap.min.js"></script> +		<script src="{{ env('APP_URL') }}public/js/hebrewparsetrainer.js"></script>  	</body>  </html> | 
