Skip to content

Commit

Permalink
fix assets url for unix, break it for windows see shellscape/webpack-…
Browse files Browse the repository at this point in the history
  • Loading branch information
Athorcis committed Aug 30, 2017
1 parent ebe60bd commit fd14bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/pages/home.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
{% cache 'home' app.locale %}
<div class="jumbotron">
<picture>
<source srcset="{{ asset_url('images\\logo-narrow.png') }}" media="(max-width: 767px)" />
<img class="logo" srcset="{{ asset_url('images\\logo-wide.png') }}" alt="{{ 'app.logo'|trans }}" />
<source srcset="{{ asset_url('images/logo-narrow.png') }}" media="(max-width: 767px)" />
<img class="logo" srcset="{{ asset_url('images/logo-wide.png') }}" alt="{{ 'app.logo'|trans }}" />
</picture>
<div class="jumbotron-text">
<h1>{{ 'home.welcome'|trans }}</h1>
Expand Down

0 comments on commit fd14bdc

Please sign in to comment.