]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Acme/DemoBundle/Resources/views/Secured/hello.html.twig
first implementation of security
[github/wallabag/wallabag.git] / src / Acme / DemoBundle / Resources / views / Secured / hello.html.twig
CommitLineData
93fd4692
NL
1{% extends "AcmeDemoBundle:Secured:layout.html.twig" %}
2
3{% block title "Hello " ~ name %}
4
5{% block content %}
6 <h1 class="title">Hello {{ name }}!</h1>
7
8 <a href="{{ path('_demo_secured_hello_admin', { 'name': name }) }}">Hello resource secured for <strong>admin</strong> only.</a>
9{% endblock %}
10
11{% set code = code(_self) %}