commit 80c7e6b90f1bcaf95e0b09a2d256e0ce4d0f5667 (patch)
parent 200e5b0ce98880148edd5618b4e51e1319d5670e
Author: Alex Karle <alex@alexkarle.com>
Date: Sat, 13 May 2023 11:20:10 -0400
Add RSVP section with menu; update home photo
Diffstat:
5 files changed, 29 insertions(+), 1 deletion(-)
diff --git a/header.html b/header.html
@@ -16,6 +16,7 @@
<a href="/">Home</a>
<a href="/story.html">Our Story</a>
<a href="/event.html">Event</a>
+ <a href="/rsvp.html">RSVP</a>
<a href="/travel.html">Travel</a>
<a href="/registry.html">Registry</a>
</nav>
diff --git a/index.tmpl b/index.tmpl
@@ -1,4 +1,6 @@
-<img src="/static/acadia.jpg" alt="Alex and Jennie in Acadia" width="100%">
+<div class="home-photo-container">
+ <img class="home-photo" src="/static/engagement-shoot.jpg" alt="Alex and Jennie">
+</div>
<p class="index-joinus">
Please join us for our wedding celebration on
diff --git a/rsvp.tmpl b/rsvp.tmpl
@@ -0,0 +1,19 @@
+<h2>RSVP</h2>
+<h3>Deadline</h3>
+<p>
+Please RSVP via snail-mail by <u>August 11</u>.
+Alternatively, if that's an inconvenience or if you have any questions,
+please reach out to us at
+<a href="mailto:rsvp@jennex.org">rsvp@jennex.org</a>.
+<p>
+<h3>Menu Selections</h3>
+<ul>
+<li>Slow Cooked Braised Beef Short Ribs</li>
+<li>Herb Roasted Chicken Breast with lite Herb Au jus</li>
+<li>Roasted Butternut Ravioli with Brown Butter and Sage Toss</li>
+<li>Vegan Kale Gnocchi with Pea Pods, Baby Spinach, Grilled Shitake Mushrooms with Garlic and Olive Oil</li>
+</ul>
+<p>
+All but Gnocchi served with mashed Garlic Potatoes.
+All served with Italian Green Beans and Grilled Local Vegetables.
+</p>
diff --git a/static/engagement-shoot.jpg b/static/engagement-shoot.jpg
Binary files differ.
diff --git a/style.css b/style.css
@@ -15,6 +15,12 @@ html {
background-color: #fffff5;
}
+.home-photo {
+ display: block;
+ margin: 0 auto;
+ width: 50%;
+}
+
.index-joinus {
text-align: center;
}