PHP Classes

File: views/layout.twig

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   pH7 PHP Web App Boilerplate   views/layout.twig   Download  
File: views/layout.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: pH7 PHP Web App Boilerplate
Start a Web app development using boilerplate code
Author: By
Last change:
Date: 1 year ago
Size: 1,275 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/css/materialize.min.css"> <link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <title>pH7Boilerplate - {% block title %}{% endblock %}</title> </head> <body> <nav> <div class="nav-wrapper"> <a class="brand-logo center" href="{{ path('home') }}">pH7Boilerplate</a> <ul id="nav-mobile" class="right"> <li><a href="{{ path('home') }}">Home</a></li> </ul> </div> </nav> <div class="container"> {% block content %}{% endblock %} </div> <footer class="page-footer"> <div class="footer-copyright"> <div class="container"> © <a href="http://ph7s.github.io" title="Pierre-Henry's Page">Pierre-Henry</a> ? All Rights Reserved. </div> </div> </footer> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/js/materialize.min.js"></script> </body> </html>