summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author53hornet <53hornet@gmail.com>2018-09-03 07:55:16 -0400
committer53hornet <53hornet@gmail.com>2018-09-03 07:55:16 -0400
commit2f0780b82f507bfb7958ec2bc6aa188cac677c09 (patch)
tree9ddbe603a7b94387b42c28d514b7899f97050fc0
parentef70b6074baefb3120a2d6740d0f82230191b234 (diff)
downloadmd-site-2f0780b82f507bfb7958ec2bc6aa188cac677c09.tar.xz
md-site-2f0780b82f507bfb7958ec2bc6aa188cac677c09.zip
Added basic wedding site structure
-rw-r--r--makefile12
-rw-r--r--md/53hor.net/gallery/easter-2017.jpgbin0 -> 4507201 bytes
-rw-r--r--md/53hor.net/gallery/index.md2
-rw-r--r--md/wedding/accomodations/index.md16
-rw-r--r--md/wedding/gallery/index.md16
-rw-r--r--md/wedding/gifts/index.md6
-rw-r--r--md/wedding/index.md14
-rw-r--r--md/wedding/nav.html10
-rw-r--r--md/wedding/party/index.md16
-rw-r--r--md/wedding/story/index.md16
-rw-r--r--md/wedding/todoandeat/index.md16
-rw-r--r--md/wedding/travel/index.md9
12 files changed, 131 insertions, 2 deletions
diff --git a/makefile b/makefile
index 386f151..74435b6 100644
--- a/makefile
+++ b/makefile
@@ -6,11 +6,13 @@ PNG = $(shell find md/ -type f -name '*.png')
CSS_OUT = $(patsubst md/%.css, html/%.css, $(CSS))
JPG_OUT = $(patsubst md/%.jpg, html/%.jpg, $(JPG))
PNG_OUT = $(patsubst md/%.png, html/%.png, $(PNG))
+
53HORNET_OUT = $(patsubst md/53hor.net/%.md, html/53hor.net/%.html, $(MD))
ATC_OUT = $(patsubst md/atc.53hor.net/%.md, html/atc.53hor.net/%.html, $(MD))
+WED_OUT = $(patsubst md/wedding/%.md, html/wedding/%.html, $(MD))
.PHONY: all
-all: css img 53hor.net atc.53hor.net alsplusatc.net
+all: css img 53hor.net atc.53hor.net wedding
.PHONY: css
css: $(CSS_OUT)
@@ -49,5 +51,13 @@ html/atc.53hor.net/%.html: md/atc.53hor.net/%.md md/atc.53hor.net/nav.html
@mkdir -p "$(@D)"
@pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=3 -B md/atc.53hor.net/nav.html -c /styles.css -o "$@"
+.PHONY: wedding
+wedding: $(WED_OUT)
+
+html/wedding/%.html: md/wedding/%.md md/wedding/nav.html
+ @echo "wedding: $< -> $@"
+ @mkdir -p "$(@D)"
+ @pandoc "$<" -f markdown -t html5 -s -B md/wedding/nav.html -c /styles.css -o "$@"
+
clean:
@rm -rf html/
diff --git a/md/53hor.net/gallery/easter-2017.jpg b/md/53hor.net/gallery/easter-2017.jpg
new file mode 100644
index 0000000..e4a25ab
--- /dev/null
+++ b/md/53hor.net/gallery/easter-2017.jpg
Binary files differ
diff --git a/md/53hor.net/gallery/index.md b/md/53hor.net/gallery/index.md
index 68bfc62..6202b08 100644
--- a/md/53hor.net/gallery/index.md
+++ b/md/53hor.net/gallery/index.md
@@ -17,6 +17,8 @@ This is the gallery.
## Easter
+![[Go to Easter 2017 album](https://nextcloud.53hor.net/index.php/apps/gallery/s/76iowZy9tmkWDDo#)](easter-2017.jpg)
+
## Independence Day
## 'Wheezy'
diff --git a/md/wedding/accomodations/index.md b/md/wedding/accomodations/index.md
new file mode 100644
index 0000000..598aef8
--- /dev/null
+++ b/md/wedding/accomodations/index.md
@@ -0,0 +1,16 @@
+---
+pagetitle: Accomodations
+---
+<article>
+
+# Mr. and Mrs. Carpenter
+
+## Aug. Ninth, 2019
+
+### Intro
+
+This is where we talk about things
+
+### RSVP
+
+</article>
diff --git a/md/wedding/gallery/index.md b/md/wedding/gallery/index.md
new file mode 100644
index 0000000..b271ff7
--- /dev/null
+++ b/md/wedding/gallery/index.md
@@ -0,0 +1,16 @@
+---
+pagetitle: Gallery
+---
+<article>
+
+# Mr. and Mrs. Carpenter
+
+## Aug. Ninth, 2019
+
+### Intro
+
+This is where we talk about things
+
+### RSVP
+
+</article>
diff --git a/md/wedding/gifts/index.md b/md/wedding/gifts/index.md
new file mode 100644
index 0000000..458bdc3
--- /dev/null
+++ b/md/wedding/gifts/index.md
@@ -0,0 +1,6 @@
+---
+pagetitle: Gifts
+---
+<article>
+
+</article>
diff --git a/md/wedding/index.md b/md/wedding/index.md
index 3b18e51..7c5ec9c 100644
--- a/md/wedding/index.md
+++ b/md/wedding/index.md
@@ -1 +1,13 @@
-hello world
+---
+pagetitle: We're Getting Married!
+---
+<article>
+
+# Amy and Adam Carpenter
+
+## Aug. Ninth, 2019
+
+### [RSVP](https://goo.gl/forms/DpvOMOJR7uLwpCeo1)
+<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSevvnmHk0wNamQTEICBmRsovUQpqO500F-kxKd0U_uIXgj4Kw/viewform?embedded=true" width="700" height="520" frameborder="0" marginheight="0" marginwidth="0">Patiently Loading...</iframe>
+
+</article>
diff --git a/md/wedding/nav.html b/md/wedding/nav.html
new file mode 100644
index 0000000..7544a18
--- /dev/null
+++ b/md/wedding/nav.html
@@ -0,0 +1,10 @@
+<nav id="topnav">
+ <a href="/">Our Wedding</a>
+ <a href="/accomodations">Accomodations</a>
+ <a href="/travel">Travel</a>
+ <a href="/todoandeat">To-Do/To-Eat</a>
+ <a href="/party">Bridal Party</a>
+ <a href="/gifts">Gifts</a>
+ <a href="/story">Our Story</a>
+ <a href="/gallery">Gallery</a>
+</nav>
diff --git a/md/wedding/party/index.md b/md/wedding/party/index.md
new file mode 100644
index 0000000..459fcda
--- /dev/null
+++ b/md/wedding/party/index.md
@@ -0,0 +1,16 @@
+---
+pagetitle: Bridal Party
+---
+<article>
+
+# Mr. and Mrs. Carpenter
+
+## Aug. Ninth, 2019
+
+### Intro
+
+This is where we talk about things
+
+### RSVP
+
+</article>
diff --git a/md/wedding/story/index.md b/md/wedding/story/index.md
new file mode 100644
index 0000000..1e0f9aa
--- /dev/null
+++ b/md/wedding/story/index.md
@@ -0,0 +1,16 @@
+---
+pagetitle: Our Story
+---
+<article>
+
+# Mr. and Mrs. Carpenter
+
+## Aug. Ninth, 2019
+
+### Intro
+
+This is where we talk about things
+
+### RSVP
+
+</article>
diff --git a/md/wedding/todoandeat/index.md b/md/wedding/todoandeat/index.md
new file mode 100644
index 0000000..7647808
--- /dev/null
+++ b/md/wedding/todoandeat/index.md
@@ -0,0 +1,16 @@
+---
+pagetitle: Things To Do and Eat
+---
+<article>
+
+# Mr. and Mrs. Carpenter
+
+## Aug. Ninth, 2019
+
+### Intro
+
+This is where we talk about things
+
+### RSVP
+
+</article>
diff --git a/md/wedding/travel/index.md b/md/wedding/travel/index.md
new file mode 100644
index 0000000..0196c10
--- /dev/null
+++ b/md/wedding/travel/index.md
@@ -0,0 +1,9 @@
+---
+pagetitle: Travel & Transportation
+---
+<article>
+
+### The Venue
+<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d23851.206372682776!2d-82.83657088242894!3d41.64708166489438!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x883a5429662ab55d%3A0x20a976de8b861ecd!2sPut-In-Bay%2C+OH!5e0!3m2!1sen!2sus!4v1535223600843" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
+
+</article>