Skip to content

Commit

Permalink
Fixing bad CSS path in the script only (correct in the screencast) - …
Browse files Browse the repository at this point in the history
…thansk to Nikos C in the comments for the tip!

http://knpuniversity.com/screencast/symfony2-ep4/assets#comment-1051279470
  • Loading branch information
weaverryan committed Sep 23, 2013
1 parent 00a3782 commit 2d97ef4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions knpu/assets.rst
Expand Up @@ -14,9 +14,9 @@ good-old-fashioned ``link`` tags:
{% block stylesheets %}
{# link tag for bootstrap... #}

<link rel="stylesheet" href="{{ asset('bundles/events/css/event.css') }}" />
<link rel="stylesheet" href="{{ asset('bundles/events/css/events.css') }}" />
<link rel="stylesheet" href="{{ asset('bundles/events/css/main.css') }}" />
<link rel="stylesheet" href="{{ asset('bundles/event/css/event.css') }}" />
<link rel="stylesheet" href="{{ asset('bundles/event/css/events.css') }}" />
<link rel="stylesheet" href="{{ asset('bundles/event/css/main.css') }}" />
{% endblock %}

Making Bundle Assets Public
Expand Down

0 comments on commit 2d97ef4

Please sign in to comment.