Updated wedding invitation content
This commit is contained in:
@@ -137,14 +137,14 @@
|
||||
|
||||
|
||||
<li class="navigation-item">
|
||||
<a href="/authors/">🇬🇧</a>
|
||||
<a href="/de/authors/">🇩🇪</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="navigation-item">
|
||||
<a href="/de/authors/">🇩🇪</a>
|
||||
<a href="/authors/">🇬🇧</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>http://localhost:1313/ru/marriage/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/ru/marriage/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/marriage/">
|
||||
</head>
|
||||
</html>
|
||||
@@ -137,14 +137,14 @@
|
||||
|
||||
|
||||
<li class="navigation-item">
|
||||
<a href="/de/categories/">🇩🇪</a>
|
||||
<a href="/categories/">🇬🇧</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="navigation-item">
|
||||
<a href="/categories/">🇬🇧</a>
|
||||
<a href="/de/categories/">🇩🇪</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>http://localhost:1313/ru/marriage/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/ru/marriage/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/marriage/">
|
||||
</head>
|
||||
</html>
|
||||
@@ -216,14 +216,14 @@
|
||||
.countdown {
|
||||
text-align: center;
|
||||
margin-bottom: 2rem;
|
||||
font-size: 1.2rem;
|
||||
font-size: 5rem;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
margin-top: 3rem;
|
||||
color: #888;
|
||||
font-size: 1rem;
|
||||
font-size: 2rem;
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
@@ -247,10 +247,10 @@
|
||||
|
||||
|
||||
<div class="hero">
|
||||
<img src="/images/header-image.jpg" alt="Wedding Header Image">
|
||||
<img src="/images/hochzeit-header.jpg" alt="Wedding Header Image">
|
||||
<h1>Свадьба Стефана и Марии</h1>
|
||||
<div class="date">
|
||||
ru
|
||||
15 августа 2026 г.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -266,14 +266,18 @@
|
||||
|
||||
<div class="section">
|
||||
<h2>📅 Мероприятие</h2>
|
||||
|
||||
<p>
|
||||
<strong>Церемония:</strong>
|
||||
15 августа 2026 г., в 14:00
|
||||
|
||||
<p><strong>Церемония:</strong> 14:00</p>
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
|
||||
<p><strong>Прием:</strong> 17:00</p>
|
||||
|
||||
|
||||
<p><strong>Место:</strong> Хельсинки, Финляндия</p>
|
||||
<p><strong>Место:</strong> Мюнхен, Германия</p>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -281,7 +285,7 @@
|
||||
|
||||
<div class="section map">
|
||||
<h2>📍 Место</h2>
|
||||
<iframe src="https://maps.google.com/?q=Helsinki,+Finland&z=12&output=embed" width="600" height="450" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
|
||||
<iframe src="https://maps.google.com/?q=Munich,+Germany&hl=ru&z=12&output=embed" width="600" height="450" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -292,8 +296,6 @@
|
||||
<p>Пожалуйста, ответьте до <strong>30 июня</strong>.</p>
|
||||
|
||||
|
||||
<p>Электронная почта: <a href="mailto:test@example.com">test@example.com</a></p>
|
||||
|
||||
|
||||
<p><a href="https://example.com/rsvp-form" target="_blank">Форма RSVP</a></p>
|
||||
|
||||
@@ -310,6 +312,13 @@
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var labels = {
|
||||
day: "Д.",
|
||||
hour: "ч.",
|
||||
minute: "м",
|
||||
second: "c"
|
||||
};
|
||||
|
||||
var countDownDate = new Date("2026-08-15 14:00").getTime();
|
||||
|
||||
var x = setInterval(function() {
|
||||
@@ -321,8 +330,11 @@
|
||||
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
|
||||
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
|
||||
|
||||
document.getElementById("timer").innerHTML = days + "d " + hours + "h "
|
||||
+ minutes + "m " + seconds + "s ";
|
||||
document.getElementById("timer").innerHTML =
|
||||
days + " " + labels.day + " " +
|
||||
hours + " " + labels.hour + " " +
|
||||
minutes + " " + labels.minute + " " +
|
||||
seconds + " " + labels.second;
|
||||
|
||||
if (distance < 0) {
|
||||
clearInterval(x);
|
||||
@@ -331,7 +343,6 @@
|
||||
}, 1000);
|
||||
</script>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
@@ -22,13 +22,13 @@
|
||||
<loc>http://localhost:1313/ru/categories/</loc>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="de"
|
||||
href="http://localhost:1313/de/categories/"
|
||||
hreflang="en"
|
||||
href="http://localhost:1313/categories/"
|
||||
/>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="en"
|
||||
href="http://localhost:1313/categories/"
|
||||
hreflang="de"
|
||||
href="http://localhost:1313/de/categories/"
|
||||
/>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>http://localhost:1313/ru/marriage/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/ru/marriage/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/marriage/">
|
||||
</head>
|
||||
</html>
|
||||
Reference in New Issue
Block a user