Skip to content

Commit

Permalink
update symfony layout assets link
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgan Pichat committed Oct 27, 2023
1 parent 455f625 commit 1a4f6ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -23,11 +23,11 @@
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* #}
<script src="{{ asset('themes/new-theme/public/main.bundle.js') }}"></script>
<script src="/js/admin.js"></script>
<script src="{{ asset('../js/admin.js') }}"></script>
<script src="{{ asset('themes/new-theme/public/cldr.bundle.js') }}"></script>
<script src="/js/tools.js"></script>
<script src="/js/jquery/plugins/fancybox/jquery.fancybox.js"></script>
<script src="/js/jquery/plugins/chosen/jquery.chosen.js"></script>
<script src="{{ asset('../js/tools.js') }}"></script>
<script src="{{ asset('../js/jquery/plugins/fancybox/jquery.fancybox.js') }}"></script>
<script src="{{ asset('../js/jquery/plugins/chosen/jquery.chosen.js') }}"></script>
{# This is handled as an external common dependency for both themes, but once new-theme is the only one it should be integrated directly into the main.bundle.js file#}
<script src="{{ asset('themes/new-theme/public/create_product.bundle.js') }}"></script>
{% if ps.isMultiShop %}
Expand Down
Expand Up @@ -28,8 +28,8 @@
{% else %}
<link rel="stylesheet" href="{{ asset('themes/new-theme/public/theme.css') }}" media="all">
{% endif %}
<link rel="stylesheet" href="/js/jquery/plugins/fancybox/jquery.fancybox.css" media="all">
<link rel="stylesheet" href="/js/jquery/plugins/chosen/jquery.chosen.css" media="all">
<link rel="stylesheet" href="{{ asset('../js/jquery/plugins/fancybox/jquery.fancybox.css') }}" media="all">
<link rel="stylesheet" href="{{ asset('../js/jquery/plugins/chosen/jquery.chosen.css') }}" media="all">
<link rel="stylesheet" href="{{ asset('themes/new-theme/public/create_product_default_theme.css') }}" media="all">
{% if lightDisplay %}
<link rel="stylesheet" href="{{ asset('themes/new-theme/public/light_theme.css') }}" media="all">
Expand Down

0 comments on commit 1a4f6ea

Please sign in to comment.