templates/Admin/head.html.twig line 1

Open in your IDE?
  1. <title>
  2.     {% if __title__ is defined %}
  3.         {{ __title__ ~ " - " }}
  4.     {% endif %}
  5.     TikiCMS 4.0
  6. </title>
  7. <meta name="controller" content="{{ get_controller_name() }}" />
  8. <meta name="action" content="{{ get_action_name() }}" />
  9. <meta name="base_url" content="{{ path('admin_home') }}" />
  10. <link href="{{ asset('build/admin/css/style.css') }}" rel="stylesheet" media="screen" />
  11. <link href="//code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" rel="stylesheet" media="screen" />
  12. <link href="{{ asset('build/admin/images/favicon.ico') }}" rel="shortcut icon" type="image/x-icon" />
  13. <style>
  14.     body { padding-top: 60px; }
  15. </style>
  16. {% block stylesheets %}{% endblock %}