2017-05-14 13 views
0

Ich versuche FOSUser Vorlage und fügen Sie einige HTML-Elemente zu meinen Seiten, ich habe diesen Fehler außer Kraft zu setzen:anpassen FosUserTemplate

unerwartetes Token „Ende der Vorlage“ der Wert „“ ("Ende der Anweisungsblock " erwartet).

hier ist die base.html.twig Seite:

<!DOCTYPE html> 
    <html lang="en"> 
    <head> 
    <meta charset="utf-8"> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <!-- The above 3 meta tags *must* come first in the head; any other 
    head content must come *after* these tags --> 
<meta name="description" content=""> 
<meta name="author" content=""> 
<link rel="icon" href="favicon.ico"> 
{% block stylesheets %}{% endblock %} 
<link rel="stylesheet" 
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> 
{% stylesheets 
"css/myStyle.css" 
%} 
<link rel="stylesheets" href="{{ asset_url }}"> 

<title>{% block title %}Hello!{% endblock %}</title> 


<!-- Latest compiled and minified CSS --> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> 
<!-- Latest compiled and minified JavaScript --> 

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> 
<!--[if lt IE 9]> 
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"> 
</script> 
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"> 
</script> 
<![endif]--> </head> 
<body> 
{% block topnav %} 
{% include '::topnav.html.twig' %} 
{% endblock %} 
<div class="container"> 
{% block content %}{% endblock %} </div> 


<!-- Bootstrap core JavaScript 
================================================== --> 
<!-- Placed at the end of the document so the pages load faster --> 
<script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> 

{% block javascripts%} {% endblock%}

dies der layout.html ist .twig Seite:

{% erweitert ': : Base.html.twig‘%}

{% block Inhalt%}

<div> 
    {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %} 
     {{ 'layout.logged_in_as'|trans({'%username%': 
app.user.username}, 'FOSUserBundle') }} | 
     <a href="{{ path('fos_user_security_logout') }}"> 
      {{ 'layout.logout'|trans({}, 'FOSUserBundle') }} 
     </a> 
    {% else %} 
     <a href="{{ path('fos_user_security_login') }}">{{ 
     'layout.login'|trans({}, 'FOSUserBundle') }}</a> 
    {% endif %} 
</div> 

{% if app.request.hasPreviousSession %} 
    {% for type, messages in app.session.flashbag.all() %} 
     {% for message in messages %} 
      <div class="flash-{{ type }}"> 
       {{ message }} 
      </div> 
     {% endfor %} 
    {% endfor %} 
{% endif %} 

<div> 
    {% block fos_user_content %} 
    {% endblock fos_user_content %} 
</div> 

{% endblock %} 
+0

Sind Sie sicher, dass diese die korrekten Inhalt der Dateien sind Sie angegeben? Sie sollten einen Fehler mit '{% stylesheets" css/myStyle.css "%}' bekommen! –

+0

ist es wichtig, gültige Antwort, wenn es ist – Timan

Antwort