PHP Classes

File: templates/base.html.twig

Recommend this page to a friend!
  Classes of Celso   API Symfony   templates/base.html.twig   Download  
File: templates/base.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: API Symfony
Demonstrates a simple API using Symfony framework
Author: By
Last change:
Date: 2 months ago
Size: 582 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>{% block title %}Welcome!{% endblock %}</title> <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>??</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>"> {% block stylesheets %} {% endblock %} {% block javascripts %} {% endblock %} </head> <body> {% block body %}{% endblock %} </body> </html>