PHP Classes

File: app/views/welcome.twig

Recommend this page to a friend!
  Classes of ikhsan   Slim Starter   app/views/welcome.twig   Download  
File: app/views/welcome.twig
Role: Auxiliary data
Content type: text/plain
Description: sample template file
Class: Slim Starter
Build MVC Web applications based on Slim framework
Author: By
Last change: Update of app/views/welcome.twig
Date: 2 months ago
Size: 662 bytes
 

Contents

Class file image Download
{% extends 'master.twig' %} {% block body %} <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h3 class="page-header">Welcome to SlimStarter</h3> <p>Working with Slim in MVC environment</p> </div> <div class="col-lg-6"> <a href="{{siteUrl('doc')}}" class="btn btn-primary pull-right">Read the Documentation</a> </div> <div class="col-lg-6"> <a href="{{siteUrl('login')}}" class="btn btn-success">Login to Dashboard Page</a> </div> <!-- /.col-lg-12 --> </div> <!-- /.row --> </div> <!-- /.container --> {% endblock %}