34 lines
958 B
HTML
34 lines
958 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ content.site_name or 'Mi Sitio' }}</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: {{ content.typography.font_family if content.typography else 'Arial' }};
|
|
background: white;
|
|
padding: 40px;
|
|
}
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
h1 {
|
|
color: {{ content.colors.primary if content.colors else '#ff4d4d' }};
|
|
margin-bottom: 20px;
|
|
}
|
|
p {
|
|
color: {{ content.colors.text if content.colors else '#333' }};
|
|
line-height: 1.6;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>{{ content.hero_title or 'Título' }}</h1>
|
|
<p>{{ content.hero_description or 'Descripción' }}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|