134 lines
4.3 KiB
HTML
134 lines
4.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}My Website{% endblock %}</title>
|
|
<!-- Bootstrap CDN -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
|
|
|
|
<style>
|
|
html, body {
|
|
font-family: 'Poppins', sans-serif;
|
|
overflow-x: hidden;
|
|
height: 100%; /* Membuat body dan html mengisi seluruh tinggi layar */
|
|
margin: 0;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #ffffff;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 600;
|
|
color: #2c3e50 !important;
|
|
}
|
|
|
|
.navbar-nav .nav-link {
|
|
color: #2c3e50;
|
|
margin-right: 15px;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.navbar-nav .nav-link:hover {
|
|
color: #1abc9c;
|
|
}
|
|
|
|
.container {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.container {
|
|
margin-top: 80px;
|
|
}
|
|
|
|
footer {
|
|
background: linear-gradient(45deg, #2c3e50, #34495e);
|
|
color: white;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
footer a {
|
|
color: #ecf0f1;
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer a:hover {
|
|
color: #1abc9c;
|
|
}
|
|
|
|
.social-icons a {
|
|
color: #ecf0f1;
|
|
margin: 0 10px;
|
|
font-size: 1.2rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.social-icons a:hover {
|
|
color: #1abc9c;
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar navbar-expand-md fixed-top">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="{{ url_for('index') }}">TOMATO.AI</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<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" href="{{ url_for('index') }}">Beranda</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ url_for('about') }}">Tentang Kami</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ url_for('faq') }}">FAQ</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Konten utama, pastikan menggunakan class container untuk menambah margin -->
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<footer>
|
|
<div class="container text-center">
|
|
<div class="row align-items-center">
|
|
<div class="col-md-6">
|
|
<p class="mb-0">Copyright © 2025 Harris Dev</p>
|
|
</div>
|
|
<div class="col-md-6 social-icons">
|
|
<a href="#"><i class="bi bi-facebook"></i></a>
|
|
<a href="#"><i class="bi bi-twitter"></i></a>
|
|
<a href="#"><i class="bi bi-instagram"></i></a>
|
|
<a href="#"><i class="bi bi-linkedin"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS and dependencies -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Bootstrap Icons -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
|
|
</body>
|
|
|
|
</html>
|