first push
This commit is contained in:
13
.dockerignore
Executable file
13
.dockerignore
Executable file
@@ -0,0 +1,13 @@
|
||||
.git
|
||||
|
||||
.pristine
|
||||
|
||||
.trash
|
||||
|
||||
.recycle
|
||||
|
||||
.backup
|
||||
|
||||
.template
|
||||
|
||||
.calendar
|
||||
5
Dockerfile
Executable file
5
Dockerfile
Executable file
@@ -0,0 +1,5 @@
|
||||
FROM nginx
|
||||
|
||||
WORKDIR /usr/share/nginx/html/
|
||||
|
||||
COPY . .
|
||||
13
compose.bash
Executable file
13
compose.bash
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
reset
|
||||
|
||||
clear
|
||||
|
||||
set -e
|
||||
|
||||
set -x
|
||||
|
||||
docker compose down
|
||||
|
||||
docker compose up --build -d
|
||||
17
compose.yaml
Normal file
17
compose.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
|
||||
essenza.embanet.online:
|
||||
|
||||
container_name: essenza.embanet.online
|
||||
|
||||
image: softwareshinobi/essenza.embanet.online
|
||||
|
||||
build:
|
||||
|
||||
context: .
|
||||
|
||||
dockerfile: Dockerfile
|
||||
|
||||
ports:
|
||||
|
||||
- 8000:80
|
||||
1
cover.svg
Normal file
1
cover.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 9.4 KiB |
92
index.html
Normal file
92
index.html
Normal file
@@ -0,0 +1,92 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Lamborghini Essenza SCV12</title>
|
||||
<!-- Bootswatch Quartz Theme CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootswatch@5.3.3/dist/quartz/bootstrap.min.css" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
padding-top: 56px; /* Adjust for fixed-top navbar height */
|
||||
background-color: var(--bs-body-bg); /* Use Bootswatch body background */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh; /* Ensure body takes full viewport height */
|
||||
}
|
||||
.navbar {
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
|
||||
}
|
||||
.main-content {
|
||||
flex: 1; /* Allows content to grow and push footer down */
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
.card {
|
||||
max-width: 800px;
|
||||
width: 100%;
|
||||
border-radius: 15px;
|
||||
overflow: hidden; /* Ensures image corners match card corners */
|
||||
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
|
||||
}
|
||||
.card img {
|
||||
border-radius: 15px 15px 0 0; /* Top corners rounded */
|
||||
}
|
||||
.footer {
|
||||
background-color: var(--bs-dark); /* Dark background for footer */
|
||||
color: var(--bs-gray-500); /* Lighter text color */
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Navigation Bar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="#">Shinobi Gallery</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" aria-current="page" href="#">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Gallery</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Main Content Area -->
|
||||
<div class="container main-content">
|
||||
<div class="card text-center bg-dark text-white">
|
||||
<img src="/cover.svg" class="card-img-top img-fluid" alt="Lamborghini Essenza SCV12 placeholder image">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Experience the Lamborghini Essenza SCV12</h5>
|
||||
<p class="card-text">A track-only hypercar developed by Lamborghini Squadra Corse. This masterpiece of engineering boasts a naturally aspirated V12 engine and an aerodynamically extreme design.</p>
|
||||
<a href="#" class="btn btn-primary">Learn More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<p>© 2025 Shinobi Gallery. All rights reserved. (Placeholder Image)</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap Bundle with Popper -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user