Files
thetempusproject/app/views/index.html
Joey Kimsey 1d311c5655 wip from ATB
2025-01-14 05:00:10 -05:00

73 lines
4.3 KiB
HTML

<div class="container">
<div class="row">
<div class="col-md-12">
<div id="carousel-home" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-bs-target="#carousel-home" data-slide-to="0" class="active"></li>
<li data-bs-target="#carousel-home" data-slide-to="1"></li>
<li data-bs-target="#carousel-home" data-slide-to="2"></li>
</ol>
<!-- Carousel Items -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="{ROOT_URL}app/images/ttp.png" class="d-block w-100" alt="First slide">
<div class="carousel-caption d-none d-md-block 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="carousel-item">
<img src="{ROOT_URL}app/images/ttp-install.png" class="d-block w-100" alt="Second slide">
<div class="carousel-caption d-none d-md-block 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="carousel-item">
<img src="{ROOT_URL}app/images/ttp-github.png" class="d-block w-100" alt="Third slide">
<div class="carousel-caption d-none d-md-block 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 the MIT license.</p>
</div>
</div>
</div>
<!-- Controls -->
<a class="carousel-control-prev" href="#carousel-home" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carousel-home" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-12 col-centered">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-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>