PHP Classes

File: app/Resources/views/base.html.twig

Recommend this page to a friend!
  Classes of Omar Shaban   PHP Game of Three   app/Resources/views/base.html.twig   Download  
File: app/Resources/views/base.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Game of Three
Game of Three implementation using Websockets
Author: By
Last change:
Date: 2 years ago
Size: 616 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>{% block title %}Welcome! - Game Of Three{% endblock %}</title> {% block stylesheets %}{% endblock %} <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" /> <script src="https://code.jquery.com/jquery-1.12.2.min.js" integrity="sha256-lZFHibXzMHo3GGeehn1hudTAP3Sc0uKXBXAzHX1sjtk=" crossorigin="anonymous"></script> </head> <body> {% block body %}{% endblock %} {% block javascripts %}{% endblock %} </body> </html>