123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- use Cygnite\AssetManager\Asset;
- use Cygnite\Common\UrlManager\Url;
- ?>
- <div class="header">
- <div style="padding: 5px; ">
- <div align="center" > <h3 class="text-center" style="color:#fff !important;">
- <strong style="font-weight: bolder; font-size: 40px;"> Welcome </strong> to Cygnite PHP Framework </h3>
- <span style="font-size: 20px; color: #F6F6F1; ">A modern and elegant toolkit for web developers</span>
- </div>
- </div>
- </div>
- <div class="container-body">
- <div align="center">
- <h2 class="text-center">Why you'll love Cygnite Framework?</h2>
- <hr class="featurette-divider"></hr>
- </div>
- <p class="lead head-subtitle">
- Cygnite packed with tons of awesome features to make your development very simple and enjoyable.
- You may be beginner or advance professional, Cygnite does all magic to fit you right in.</p>
- <hr class="featurette-divider"></hr>
- <ul class="thumbnails">
- <li class="span3">
- <div class="feature-block">
- <div class="features-head">
- <h3 class="title">
- <a href="http://www.cygniteframework.com/2013/07/introduction.html">Better <span class="title-em">Performance</span></a></h3>
- </div>
- <p> Cygnite gives exceptional performance because of it's lazy loading mechanism. Cygnite only loads the features that you need. </p>
- </div>
- </li>
- <li class="span3">
- <div class="feature-block">
- <div class="features-head">
- <h3 class="title">
- <a href="http://www.cygniteframework.com/2013/08/controllers.html">User <span class="title-em">Friendly</span></a></h3>
- </div>
- <p> No more configuring things. Cygnite comes with out of box configuration. Expressive, beautiful syntax make you to love
- code. Composer powered, allow you to plug in third party packages.
- </p>
- </div>
- </li>
- <li class="span3">
- <div class="feature-block">
- <div class="features-head">
- <h3 class="title">
- <a href="http://www.cygniteframework.com/2013/08/routing.html">RESTful <span class="title-em">Routing</span></a></h3>
- </div>
- <p>Cygnite provides a powerful router that response to route callbacks to specific HTTP request methods and URIs. RESTful
- resource controllers lead you to build powerful REST api. </p>
- </div>
- </li>
- <li class="span3">
- <div class="feature-block">
- <div class="features-head">
- <h3 class="title">
- <a href="http://www.cygniteframework.com/2014/03/ioc-container.html">IoC <span class="title-em">Container</span></a></h3>
- </div>
- <p>Stay flexible and build decoupled software using Cygnite IoC. Inject dependencies into the controller without any configuration.</p>
- </div>
- </li>
- <li class="span3">
- <div class="feature-block">
- <div class="features-head">
- <h3 class="title">
- <a href="http://www.cygniteframework.com/2013/08/active-record.html">Active <span class="title-em">Record</span></a></h3>
- </div>
- <p> Cygnite provide simple and amazing ActiveRecord implementation for working with database. Each model class interact with database table. </p>
- </div>
- </li>
- <li class="span3">
- <div class="feature-block">
- <div class="features-head">
- <h3 class="title">
- <a href="http://www.cygniteframework.com/2014/03/console-overview.html"> Cygnite <span class="title-em">CLI</span></a></h3>
- </div>
- <p> Don't want to spend more time? Cygnite provide you powerful CLI tool to reduce pain.
- You create database, Cygnite will generate php code for you. Migration allow you to build database version
- control with ease. </p>
- </div>
- </li>
- </ul>
- </div>
- <div class="clear"> </div>
- <hr class="featurette-divider">
- <div class="footer" >
- <div class="footer-inner-left"> </div>
- <div class="footer-inner" align="center">
- <div class="footerrow tweets" >
- <p style="font-size: 16px;">If you are exploring Cygnite Framework for first time,
- you should read beautiful <a href="http://www.cygniteframework.com/2013/07/quickstart.html">User Guide</a> </p>
- <p style="font-size: 18px;">You will love the simplicity of Cygnite Framework</p>
- </div>
- <div class="footerrow" align="center" style="clear:both;padding-top: 0px;">
- <div class="footer-hr"></div>
- <?php echo \Cygnite\Foundation\Application::poweredBy(); ?>
- </div>
- </div>
- <div class="footer-inner-right"> </div>
- <div class="clear"> </div>
- </div>
- <?php echo Asset::style('assets/css/cygnite/style.css'); ?>
- <style type="text/css">
- .feature-block{ float: left;border:0px; font-size: 17px;font-family: small-caption;}
- .title {padding-top: 10px;}
- </style>
|