1{{--
2 Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
3 See the LICENCE file in the repository root for full licence text.
4--}}
5@extends('master')
6
7@section('script')
8 <script id="json-shopify-options" type="application/json">
9 {!! json_encode([
10 'domain' => $GLOBALS['cfg']['store']['shopify']['domain'],
11 'storefrontAccessToken' => $GLOBALS['cfg']['store']['shopify']['storefront_token'],
12 ]) !!}
13 </script>
14
15 @parent
16 @include('layout._extra_js', ['src' => 'js/store-bootstrap.js'])
17@endsection