Initial commit
This commit is contained in:
71
app/views/index.html
Normal file
71
app/views/index.html
Normal file
@ -0,0 +1,71 @@
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
|
||||
<ol class="carousel-indicators">
|
||||
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
|
||||
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
|
||||
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
|
||||
</ol>
|
||||
<div class="carousel-inner">
|
||||
<div class="bg-primary slide-text-bg carousel-caption main-text">
|
||||
<div class="center-block">
|
||||
<h1>The Tempus Project</h1>
|
||||
<h3>PHP powered web application for rapid prototyping</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item active">
|
||||
<img src="{ROOT_URL}app/images/ttp.png" alt="First slide">
|
||||
<div class="carousel-caption bg-primary slide-text-bg">
|
||||
<h3>Powerful</h3>
|
||||
<p>The Tempus Project is built with expansion in mind. From a custom template engine to the simple to use MVC style, The Tempus Project is built to provide a powerful and stable foundation for web applications.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="{ROOT_URL}app/images/ttp-install.png" alt="Second slide">
|
||||
<div class="carousel-caption bg-primary slide-text-bg">
|
||||
<h3>Quick and Simple Installation</h3>
|
||||
<p>Built with rapid deployment in mind you can have The Tempus Project installed in just minutes.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="{ROOT_URL}app/images/ttp-github.png" alt="Third slide">
|
||||
<div class="carousel-caption bg-primary slide-text-bg">
|
||||
<h3>Open Source</h3>
|
||||
<p>The Tempus Project is completely open source and only utilizes other open-source components. The Project is provided under thee MIT license.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#carousel-example-generic" class="left carousel-control" data-slide="prev">
|
||||
<span class="glyphicon glyphicon-chevron-left"></span>
|
||||
</a>
|
||||
<a href="#carousel-example-generic" class="right carousel-control" data-slide="next">
|
||||
<span class="glyphicon glyphicon-chevron-right"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-9 col-md-9 col-sm-12 col-xs-12 col-centered">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||
<h2>Welcome to The Tempus Project</h2>
|
||||
<hr>
|
||||
<p>The aim of The Tempus Project is to create an easy to use and implement CMS based
|
||||
around the MVC style and build using php 5.6 and MySQL. Here are some of the features:</p>
|
||||
<ul>
|
||||
<li>Fully secured registration/login system</li>
|
||||
<li>Automatic error handling</li>
|
||||
<li>Built in debugging tools</li>
|
||||
<li>Testing implements to help you expand it further</li>
|
||||
<li>Customizable logging to ensure you are always up to date on whats going on</li>
|
||||
<li>Simple administration panel</li>
|
||||
<li>Bug reports and feedback forms included!</li>
|
||||
<li>Drag and drop simple to install</li>
|
||||
</ul>
|
||||
<p>DISCLAIMER: as of January 1, 2023 this code is not production ready! Please use at your own risk! That being said, I am always trying to improve this system. If you have any suggestions or need to report a bug, you can do so on my <a href="https://github.com/TheTempusProject/TheTempusProject">GitHub</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user