<?php
// PHP Script: index.asp
// Description: *.com index page
// DATE: 26-11-2009
// AUTHOR: 'Eugene Kerner' <ekerner@ekerner.com>
// REVISION: 1.0

require_once('../config/SetEnv.php');
require_once('EKerner/WebApp.php');

class webpage extends EKerner_WebApp
{

  public function render()
  {
    // html meta data ...
    $this->siteDetails->metaTitle       = 'About Us &middot; ' . $this->siteDetails->company . ' &middot; ' . $this->siteDetails->caption;
    $this->siteDetails->metaDescription = $this->siteDetails->company . ' provide affordable technical business solutions that work - without the technical jargon.' .
                                          'We can manage your IT needs from your systems and applications development to your online, hardcopy, and broadcast enterprise marketing.';
    $this->siteDetails->metaKeywords    = $this->siteDetails->company . ', application developer, application, developer, app, software, Australia, AU, AUS, OZ, AUD, information technology, ' .
                                          'about, about us, about me';
    $this->panes->head->append('content',
      '<link rel="stylesheet" type="text/css" href="/css/accordion.css" />' . "\n    " .
      '<script type="text/javascript" src="/js/accordion.jq"></script>'
    );
    $this->panes->onload->append('content', 
      "menu.init('mainMenu', ['eKerner', 'About']);\n        " . 
      "accordion.init('aboutAccordion', 'Who we are');"
    );
    
    // page content ...
    $this->panes->banner->append('widget', 'ContactLinks');
    $this->panes->left->append('widget', 'GenreMenu');
    $this->panes->heading->append('content', '
                      <!--img class="floatRight headingImage" src="/images/content/eugene_thinking.png" alt="Eugene Thinking" width="118px" height="100px" /-->
                      <h2><img src="/images/icons/info.png" alt="Info Icon" width="25" height="25" />About Us</h2>
                      <p>Welcome to ' . $this->siteDetails->company . ', please make yourself at home.</p>
                      <p>We make real the dreams, inventions, and innovations of business developers, entrepreneurs, and visionaries.</p>
                      <p>Here you will find everything you need to build whatever you may think up.</p>
                      <p class="alignRight"><a href="/">home &raquo;</a></p>
    ');
    $this->panes->main->append('content', '
                      <div id="aboutAccordion" class="accordion">
                        <h3><img src="/images/icons/exclamation.png" alt="Exclamation Icon" width="25" height="25" />Who we are</h3>
                        <div class="p">
                          <p>
                            Hello, My name is Eugene Reuben Kerner and I developed ' . $this->siteDetails->company . ' and most of her systems to date,
                             well, not all alone and unassisted as I have the help of my friends, family, colleagues, and workmates.<br />
                            I have been interested in and learning about computers and I.T. since I was a teenager.<br />
                            I have been working in Information Technology and Computing for over 20 years, during which time I have been employed by a
                             broad range of I.T. projects and developments accross many different fields.<br />
                            For more detailed information on my skillset and history please see my 
                             <a href="http://cv.ekerner.com.au" title="Eugene Kerner &middot; Curriculum Vitae">Curriculum Vitae</a>.<br />
                            It is with great pleasure and honour that I can now apply my attained skills
                             to helping inventors and innovators to make their ideas a reality.<br />
			    Additionally, my immediate and most trusted circle of developers alone boast over 150 years of I.T. experience spanning a diverse range of fields and technologies.<br />
			    If you can think it up, then we can make it.
                          </p>
                        </div>
                        <h3><img src="/images/icons/exclamation.png" alt="Exclamation Icon" width="25" height="25" />What we do</h3>
                        <div class="p">
			  We aim to further enhance and improve our development environment which is trusted as being focused on making the dreams, inventions, and innovations of business developers, entrepreneurs, and visionaries come true. We pride ourselves in being known as the people who convert ideas into real accomplishment in an industry which is lost in its pointless and hollow struggle for profit and growth while achieving nothing of worth to the Earth or her people. We are the minority of doers amid a plethora of pretenders and procrastinators.
                        </div>
                        <h3><img src="/images/icons/exclamation.png" alt="Exclamation Icon" width="25" height="25" />How we do it</h3>
                        <div class="p">
			  We achieve outcomes by having excellent and diverse skills, proven and trusted infrastructure, as well as sound morals.<br />
                          It is very important to me that we do what we do in a certain forum. 
                           Honesty and integrity are to be applied in all eKerner dealings.<br />
                          So the basic policy here is to keep it real and honest, and it seems to be working so far<br />
                          We hope that you feel open to extend us the same courtesies.
                        </div>
                        <h3><img src="/images/icons/exclamation.png" alt="Exclamation Icon" width="25" height="25" />Where we do it</h3>
                        <div class="p">
                          We are Australia based and our primary focus and client base are in our local region.<br />
                          We also have randomly scattered online clients and contracts across Australia and the world.<br />
                          If you like the way we do business and want to employ our services then please 
                           <a href="/contact/" title="Contact Us">contact us</a> and we will take a look at your requirements.
                        </div>
                        <h3><img src="/images/icons/exclamation.png" alt="Exclamation Icon" width="25" height="25" />When we do it</h3>
                        <div class="p">
                          This is perhaps an irrelevant heading but you cant have a "Who What How Where When Why" without "When" ;)<br />
                          Our service delivery ranges as follows: -
                          <ul class="greenTickList">
                            <li>On demand: Small and urgent jobs are often executed ad-lib and as required. Dont put off untill tomorrow that which can be dome today.</li>
                            <li>By Arrangement: Some of the more complicated jobs take design and development time.</li>
                            <li>By Contract: The big jobs need research to accurately determine scope, negotiations until all parties agree on a plan, and then careful project management to accomplish.</li>
                          </ul>
                        </div>
                        <h3><img src="/images/icons/exclamation.png" alt="Exclamation Icon" width="25" height="25" />Why we do it</h3>
                        <div class="p">
			  At eKerner we believe in building and improving our capacity to provide stable, reliable, and effective development services to our clients while maintaining our in-house control and management of our systems and methodologies thus continuing to enhance our usefulness to inventors and innovators as a tightly secured and highly efficient creation engine.
                        </div>
                        <p><br /><br />
                          Thanks and best regards,<br /><br />
                          Eugene Kerner.<br /><br />
                        </p>
                      </div>

    ');
    $this->panes->right->append('widget', 'BlockLinks');
    $this->panes->bottom->append('widget', 'Footer');

    $this->write();
  }

}


try {
  $webpage = new webpage();
  $webpage->render();
} catch (Exception $e) {
  die($e->getMessage());
}

?>
