Deploy from Lumerel

This commit is contained in:
Lumerel Deploy
2026-02-14 23:00:52 +00:00
commit 5d0874eab1
14 changed files with 443 additions and 0 deletions

13
templates/about.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
$pageTitle = 'About Us';
$pageDescription = 'Learn more about our Simple Framework';
?>
<h1>About</h1>
<p>This is a lightweight PHP framework designed for simplicity and ease of use.</p>
<p>Key features:</p>
<ul>
<li>Simple routing</li>
<li>Dynamic page templates</li>
<li>Minimal configuration</li>
<li>Clean, readable code</li>
</ul>

18
templates/contact.php Normal file
View File

@@ -0,0 +1,18 @@
<?php include 'includes/header.php'; ?>
<div class="container">
<div class="contact-form">
<h2>Get in Touch</h2>
<p>Have a project in mind? Let's discuss how we can bring your vision to life.</p>
<form action="#" method="post">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<input type="tel" name="phone" placeholder="Your Phone Number">
<textarea name="message" rows="5" placeholder="Tell us about your project" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
<?php include 'includes/footer.php'; ?>

34
templates/error.php Normal file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Error | Simple Framework</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.error-container {
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
max-width: 500px;
}
h1 { color: #d9534f; }
</style>
</head>
<body>
<div class="error-container">
<h1>Oops! Something went wrong</h1>
<p>We're sorry, but an unexpected error occurred. Our team has been notified.</p>
<p><a href="/">Return to Home</a></p>
</div>
</body>
</html>

27
templates/home.php Normal file
View File

@@ -0,0 +1,27 @@
<?php include 'includes/header.php'; ?>
<div class="container">
<header>
<h1>Welcome to Todd Low Media</h1>
<p>Innovative Solutions for Modern Challenges</p>
</header>
<div class="content-grid">
<div class="content-card">
<h2>Creative Strategy</h2>
<p>We transform complex ideas into elegant, actionable strategies that drive meaningful results and push boundaries of innovation.</p>
</div>
<div class="content-card">
<h2>Technology Solutions</h2>
<p>Leveraging cutting-edge technologies to build scalable, efficient digital solutions that adapt and evolve with your business needs.</p>
</div>
<div class="content-card">
<h2>Digital Transformation</h2>
<p>Our holistic approach merges design, technology, and strategic thinking to reimagine how businesses operate in the digital landscape.</p>
</div>
</div>
</div>
<?php include 'includes/footer.php'; ?>