PHP Classes

File: templates/home/index.html.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   GetMeALatte   templates/home/index.html.php   Download  
File: templates/home/index.html.php
Role: Example script
Content type: text/plain
Description: Example script
Class: GetMeALatte
Promote a product to be sold to a crowd
Author: By
Last change:
Date: 1 year ago
Size: 1,678 bytes
 

Contents

Class file image Download
<!-- Icon Section -->

<div class="row">
    <h2 class="center blue-text">
        <?php if (!empty($name)): ?>
<p>
                Hello <strong><?= $view->escape($name) ?>!</strong>
            </p>
        <?php else: ?>
<p>Welcome All</p>
        <?php endif ?>
</h2>
</div>

<div class="row">
    <div class="col s12 m4">
        <div class="icon-block">
            <h2 class="center light-blue-text"><i class="material-icons">flash_on</i></h2>
            <h5 class="center">Buy Me A Cofee ??</h5>

            <p class="light">
                .
            </p>
        </div>
    </div>

    <div class="col s12 m4">
        <div class="icon-block">
            <h2 class="center light-blue-text"><i class="material-icons">group</i></h2>
            <h5 class="center">A place to like the others!</h5>

            <p class="light">By utilizing elements and principles of Material Design, we were able to create a framework that incorporates components and animations that provide more feedback to users. Additionally, a single underlying responsive system across all platforms allow for a more unified user experience.</p>
        </div>
    </div>

    <div class="col s12 m4">
        <div class="icon-block">
            <h2 class="center light-blue-text"><i class="material-icons">settings</i></h2>
            <h5 class="center">Easy to work with</h5>

            <p class="light">We have provided detailed documentation as well as specific code examples to help new users get started. We are also always open to feedback and can answer any questions a user may have about Materialize.</p>
        </div>
    </div>
</div>