app/Resources/views/base.html.twig
author cavaliet
Mon, 07 Jul 2014 17:23:47 +0200
changeset 122 d672f7dd74dc
parent 71 b01e36991488
permissions -rwxr-xr-x
Added tag V00.17 for changeset ada5f3d8b5b4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
71
b01e36991488 add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     1
{#
b01e36991488 add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     2
  This file is part of the WikiTagBundle package.
b01e36991488 add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     3
 
b01e36991488 add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     4
  (c) IRI <http://www.iri.centrepompidou.fr/>
b01e36991488 add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     5
 
b01e36991488 add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     6
  For the full copyright and license information, please view the LICENSE
b01e36991488 add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     7
  file that was distributed with this source code.
b01e36991488 add headers for public repository release
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
     8
#}
0
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
<!DOCTYPE html>
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
<html>
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
    <head>
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
        <title>{% block title %}Welcome!{% endblock %}</title>
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
        {% block stylesheets %}{% endblock %}
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
        <link rel="shortcut icon" href="{{ asset('favicon.ico') }}" />
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
    </head>
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
    <body>
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
        {% block body %}{% endblock %}
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
        {% block javascripts %}{% endblock %}
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
    </body>
7f95f8617b0b first commit
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
</html>