127 lines
3.0 KiB
HTML
127 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="{{ meta_description }}">
|
|
<title>{{ title }}</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
color: #1a1a1a;
|
|
border-bottom: 3px solid #007bff;
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
h2 {
|
|
font-size: 1.8rem;
|
|
margin-top: 2rem;
|
|
margin-bottom: 1rem;
|
|
color: #2c3e50;
|
|
}
|
|
h3 {
|
|
font-size: 1.4rem;
|
|
margin-top: 1.5rem;
|
|
margin-bottom: 0.75rem;
|
|
color: #34495e;
|
|
}
|
|
p {
|
|
margin-bottom: 1rem;
|
|
text-align: justify;
|
|
}
|
|
ul, ol {
|
|
margin-bottom: 1rem;
|
|
margin-left: 2rem;
|
|
}
|
|
li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
@media (max-width: 768px) {
|
|
body {
|
|
padding: 15px;
|
|
}
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
h3 {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|
|
</style>
|
|
nav {
|
|
background-color: #f8f9fa;
|
|
padding: 1rem 0;
|
|
margin-bottom: 2rem;
|
|
border-bottom: 2px solid #007bff;
|
|
}
|
|
nav ul {
|
|
list-style: none;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
nav li {
|
|
margin: 0;
|
|
}
|
|
nav a {
|
|
color: #007bff;
|
|
font-weight: 600;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
transition: background-color 0.2s;
|
|
}
|
|
nav a:hover {
|
|
background-color: #e7f1ff;
|
|
text-decoration: none;
|
|
}
|
|
@media (max-width: 768px) {
|
|
nav ul {
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/index.html">Home</a></li>
|
|
<li><a href="about.html">About</a></li>
|
|
<li><a href="privacy.html">Privacy</a></li>
|
|
<li><a href="contact.html">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
<article>
|
|
<h1>{{ title }}</h1>
|
|
{{ content }}
|
|
</article>
|
|
</body>
|
|
</html>
|
|
|