PHP Classes

File: templates/base.html.twig

Recommend this page to a friend!
  Classes of Manolo Salsas   PHP Find Text in Files   templates/base.html.twig   Download  
File: templates/base.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Find Text in Files
Search text in files like the Linux command
Author: By
Last change:
Date: 2 years ago
Size: 1,203 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>{% block title %}Welcome!{% endblock %}</title> {% block stylesheets %} {{ encore_entry_link_tags('global') }} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('app') }} {% endblock %} </head> <body> <div class="header container" style="text-align:center;margin:auto;"> <a href="{{ path('app_main_index') }}" style="text-decoration:none;color:black"> <pre> _____ _ _ _ _ ____ _ | ___(_)_ __ __| | | | (_)_ __ _ ___ __ / ___|___ _ __ ___ _ __ ___ __ _ _ __ __| | | |_ | | '_ \ / _` | | | | | '_ \| | | \ \/ / | | / _ \| '_ ` _ \| '_ ` _ \ / _` | '_ \ / _` | | _| | | | | | (_| | | |___| | | | | |_| |> < | |__| (_) | | | | | | | | | | | (_| | | | | (_| | |_| |_|_| |_|\__,_| |_____|_|_| |_|\__,_/_/\_\ \____\___/|_| |_| |_|_| |_| |_|\__,_|_| |_|\__,_|</pre> </a> </div> <div class="container"> {% block body %}{% endblock %} </div> </body> </html>