PHP Classes

File: views/example/subview.php

Recommend this page to a friend!
  Classes of Victor Andeloci   Kuarasy PHP MySQL Framework   views/example/subview.php   Download  
File: views/example/subview.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Kuarasy PHP MySQL Framework
Framework to develop PHP applications using MySQL
Author: By
Last change:
Date: 10 months ago
Size: 1,221 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title>Kûarasy v<?= KUARASY_VERSION ?></title>

    <link rel="stylesheet" href="<?= SITE_URL ?>/_assets/css/main.css">
  </head>
  <body>
    <section id="kuarasy">
        <div class="decoration">
          <div class="lines">
            <div></div>
            <div></div>
            <div></div>
            <div></div>
          </div>
          <div class="lines">
            <div class="small"></div>
            <div class="small"></div>
            <div class="small"></div>
            <div class="small"></div>
          </div>
        </div>
        <div class="container">
          <h2>Kûarasy</h2>
          <h4><small>v</small><?= KUARASY_VERSION ?></h4>
          <p>
            This is a <b>subview</b>. It's located in <code>/views/example/subview.php</code>. <br>
            You can access a <b>subview</b> specifying the filename: <a href="<?= SITE_URL ?>/example/subview/"><?= SITE_URL ?>/example/<u>subview</u>/</a>
          </p>
          <a class="btn" href="<?= SITE_URL ?>/example/">
            Back
          </a>
        </div>
      </section>
  </body>
</html>