OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
knoblyExpressLandingPage
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/28/2024 11:03:35 AM
rwxrwxr-x
📄
about.php
2.06 KB
08/21/2024 10:01:12 AM
rw-r--r--
📁
assets
-
08/21/2024 10:01:17 AM
rwxr-xr-x
📄
blog.php
5.35 KB
08/21/2024 10:01:12 AM
rw-r--r--
📄
chatbot.html
1.86 KB
08/21/2024 10:01:12 AM
rw-r--r--
📄
chatbot.php
1.3 KB
08/21/2024 10:01:12 AM
rw-r--r--
📄
dashboard.php
788 bytes
08/21/2024 10:01:12 AM
rw-r--r--
📄
db.php
378 bytes
08/21/2024 10:01:12 AM
rw-r--r--
📄
footer.html
4.3 KB
08/21/2024 10:01:12 AM
rw-r--r--
📄
forgot-password-handler.php
7.12 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
forgot-password.php
4.52 KB
08/21/2024 10:01:13 AM
rw-r--r--
📁
includes
-
08/21/2024 10:01:14 AM
rwxr-xr-x
📄
index.php
12.59 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
login-handler.php
3.7 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
login.php
4.72 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
navbar.php
1.14 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
refundPolicy.php
5.99 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
reset-password-handler.php
4.01 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
reset-password.php
2.95 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
service.php
4.29 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
signup-handler.php
1.04 KB
08/21/2024 10:01:13 AM
rw-r--r--
📄
signup.php
5.98 KB
08/21/2024 10:01:14 AM
rw-r--r--
📄
usagePolicy.php
15.21 KB
08/21/2024 10:01:14 AM
rw-r--r--
📁
vendor
-
08/21/2024 10:01:26 AM
rwxr-xr-x
Editing: blog.php
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Our Blog | Knobly Cream</title> <link rel="stylesheet" href="assets/css/style.css"> <style> /* General styles */ body { font-family: Arial, sans-serif; color: #333; line-height: 1.6; margin: 0; padding: 0; } .header { background: #f8f9fa; padding: 10px 0; } .navbar { display: flex; justify-content: space-between; align-items: center; } .navbar-brand { font-size: 1.5rem; color: #007bff; text-decoration: none; } .navbar-nav { list-style: none; display: flex; gap: 15px; } .nav-item .nav-link { text-decoration: none; color: #333; } .nav-item .nav-link:hover { color: #007bff; } .container { max-width: 1200px; margin: auto; padding: 0 15px; } .txtHead { font-size: 2rem; color: #007bff; text-align: center; margin-top: 30px; margin-bottom: 20px; } .card { border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); overflow: hidden; margin-bottom: 20px; } .card-img-top { width: 100%; height: 200px; object-fit: cover; } .card-body { padding: 15px; } .card-title { font-size: 1.25rem; margin-bottom: 10px; } .card-text { font-size: 1rem; margin-bottom: 15px; } .btn-primary { background-color: #007bff; color: #fff; border: none; padding: 10px 15px; text-decoration: none; border-radius: 5px; display: inline-block; } .btn-primary:hover { background-color: #0056b3; } .footerHome { background: #f8f9fa; padding: 10px 0; text-align: center; } .footerHome .container { display: flex; justify-content: space-between; align-items: center; } .footerHome .text-center { color: #333; } .footerHome a { color: #007bff; text-decoration: none; } .footerHome a:hover { text-decoration: underline; } /* Responsive Design */ @media (max-width: 768px) { .navbar-nav { flex-direction: column; gap: 10px; } .card-img-top { height: 150px; } } </style> </head> <body> <?php include 'navbar.php'; ?> <div class="container mb-5"> <div class="txtHead mt-5 mb-3">Our Blog</div> <div class="row"> <!-- Blog Card 1 --> <div class="col-md-4"> <div class="card"> <img src="path/to/your/image1.jpg" alt="Blog Post 1" class="card-img-top"> <div class="card-body"> <h5 class="card-title">Blog Post Title 1</h5> <p class="card-text">A brief description of the blog post content. This summary provides an overview of the main points discussed in the article.</p> <a href="blog-post1.html" class="btn btn-primary">Read More</a> </div> </div> </div> <!-- Blog Card 2 --> <div class="col-md-4"> <div class="card"> <img src="path/to/your/image2.jpg" alt="Blog Post 2" class="card-img-top"> <div class="card-body"> <h5 class="card-title">Blog Post Title 2</h5> <p class="card-text">A brief description of the blog post content. This summary provides an overview of the main points discussed in the article.</p> <a href="blog-post2.html" class="btn btn-primary">Read More</a> </div> </div> </div> <!-- Blog Card 3 --> <div class="col-md-4"> <div class="card"> <img src="path/to/your/image3.jpg" alt="Blog Post 3" class="card-img-top"> <div class="card-body"> <h5 class="card-title">Blog Post Title 3</h5> <p class="card-text">A brief description of the blog post content. This summary provides an overview of the main points discussed in the article.</p> <a href="blog-post3.html" class="btn btn-primary">Read More</a> </div> </div> </div> </div> </div> <?php include 'footer.html'; ?> </body> </html>