summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author53hornet <53hornet@gmail.com>2018-12-29 15:41:31 -0500
committer53hornet <53hornet@gmail.com>2018-12-29 15:41:31 -0500
commitf11cd7a5b00e76af7ffe76ec5a51fa557464ed0c (patch)
tree31aa499d45cc4620dd562e6abbc0b170d8a67d41
parent3bc53ff6f3bc338d04b60b8c6f9448c9b59c7a12 (diff)
downloadmd-site-f11cd7a5b00e76af7ffe76ec5a51fa557464ed0c.tar.xz
md-site-f11cd7a5b00e76af7ffe76ec5a51fa557464ed0c.zip
Added brunch invite pdf
-rw-r--r--makefile21
-rw-r--r--md/theglassyladies.com/index.md17
-rw-r--r--md/theglassyladies.com/nav.html1
-rw-r--r--md/theglassyladies.com/styles.css168
-rw-r--r--md/wedding/accomodations/bg.jpgbin4039182 -> 0 bytes
-rw-r--r--md/wedding/index.md2
-rw-r--r--md/wedding/invite.pdfbin0 -> 123537 bytes
-rw-r--r--md/wedding/nav.html2
-rw-r--r--md/wedding/rsvp/bg.jpgbin6823502 -> 0 bytes
9 files changed, 208 insertions, 3 deletions
diff --git a/makefile b/makefile
index 0a3af0b..c42b94d 100644
--- a/makefile
+++ b/makefile
@@ -2,17 +2,28 @@ MD = $(shell find md/ -type f -name '*.md')
CSS = $(shell find md/ -type f -name '*.css')
JPG = $(shell find md/ -type f -name '*.jpg')
PNG = $(shell find md/ -type f -name '*.png')
+PDF = $(shell find md/ -type f -name '*.pdf')
CSS_OUT = $(patsubst md/%.css, html/%.css, $(CSS))
JPG_OUT = $(patsubst md/%.jpg, html/%.jpg, $(JPG))
PNG_OUT = $(patsubst md/%.png, html/%.png, $(PNG))
+PDF_OUT = $(patsubst md/%.pdf, html/%.pdf, $(PDF))
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))
+GLASSY_OUT = $(patsubst md/theglassyladies.com/%.md, html/theglassyladies.com/%.html, $(MD))
.PHONY: all
-all: css img 53hor.net atc.53hor.net wedding
+all: css img pdf 53hor.net atc.53hor.net wedding theglassyladies.com
+
+.PHONY: pdf
+pdf: $(PDF_OUT)
+
+html/%.pdf: md/%.pdf
+ @echo "pdf: $< -> $@"
+ @mkdir -p "$(@D)"
+ @cp "$<" "$@"
.PHONY: css
css: $(CSS_OUT)
@@ -59,5 +70,13 @@ html/wedding/%.html: md/wedding/%.md md/wedding/nav.html
@mkdir -p "$(@D)"
@pandoc "$<" -f markdown -t html5 -s -B md/wedding/nav.html -c /styles.css -o "$@"
+.PHONY: theglassyladies.com
+theglassyladies.com: $(GLASSY_OUT)
+
+html/theglassyladies.com/%.html: md/theglassyladies.com/%.md md/theglassyladies.com/nav.html
+ @echo "theglassyladies.com: $< -> $@"
+ @mkdir -p "$(@D)"
+ @pandoc "$<" -f markdown -t html5 -s -B md/theglassyladies.com/nav.html -c /styles.css -o "$@"
+
clean:
@rm -rf html/
diff --git a/md/theglassyladies.com/index.md b/md/theglassyladies.com/index.md
index e69de29..3203956 100644
--- a/md/theglassyladies.com/index.md
+++ b/md/theglassyladies.com/index.md
@@ -0,0 +1,17 @@
+---
+pagetitle: "The Glassy Ladies"
+author:
+- Elizabeth Carpenter
+- Adam Carpenter
+keywords: [liz, elizabeth, carpenter, pat, patricia, potter, glass, art, stained, artisans, artists]
+
+---
+<article>
+
+# The "Glassy Ladies" Artisans
+
+## Elizabeth Carpenter & Patricia Potter
+
+lorem ipsum
+
+</article>
diff --git a/md/theglassyladies.com/nav.html b/md/theglassyladies.com/nav.html
index e69de29..8d1c8b6 100644
--- a/md/theglassyladies.com/nav.html
+++ b/md/theglassyladies.com/nav.html
@@ -0,0 +1 @@
+
diff --git a/md/theglassyladies.com/styles.css b/md/theglassyladies.com/styles.css
index e69de29..1bf741f 100644
--- a/md/theglassyladies.com/styles.css
+++ b/md/theglassyladies.com/styles.css
@@ -0,0 +1,168 @@
+/* stylesheet for theglassyladies.com */
+
+/* google fonts */
+@import url('https://fonts.googleapis.com/css?family=Arapey:400,400i|Fredericka+the+Great|Reenie+Beanie');
+
+:root {
+ /* custom colors */
+ --teal:#008080;
+}
+
+#topnav {
+ margin: 0;
+ padding: 0;
+ width: 100%;
+ top: 0;
+ overflow: hidden;
+ text-align: center;
+ position: fixed;
+ background-color: white;
+ box-shadow: 0 0 10px black;
+}
+
+#topnav a {
+ display: inline-block;
+ text-align: center;
+ padding: 1em 1em;
+ text-decoration: none;
+ color: var(--teal);
+ transition: 0.25s;
+ font-family: 'Arapey', serif;
+ font-weight: 700;
+ font-size: 1.5em;
+}
+
+#topnav a:hover {
+ color: white;
+ background-color: var(--teal);
+}
+
+@media screen and (max-width: 1400px) {
+ #topnav {
+ position: static;
+ }
+}
+
+@media only screen and (max-width: 800px) {
+ #topnav {
+ position: static;
+ }
+
+ #topnav a {
+ display: block;
+ padding: 0.25em;
+ }
+
+}
+
+html {
+ margin: 0;
+ padding: 0;
+ height: 100%;
+}
+
+body {
+ margin: 0;
+ padding: 0;
+ height: 100%;
+ background-color: #ffffff;
+ background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.343 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413 7.07-7.07 7.07 7.07zm-2.827 2.83l1.414-1.416L30 14.97l-5.657 5.657 1.414 1.415L30 17.8l4.243 4.242zm-2.83 2.827l1.415-1.414L30 20.626l-2.828 2.83 1.414 1.414L30 23.456l1.414 1.414zM56.87 59.414L58.284 58 30 29.716 1.716 58l1.414 1.414L30 32.544l26.87 26.87z' fill='%23009999' fill-opacity='0.42' fill-rule='evenodd'/%3E%3C/svg%3E");
+
+}
+
+article {
+ margin-top: 5em;
+ margin-left: 10%;
+ margin-right: 10%;
+ padding: 0;
+ height: 100%;
+}
+
+figure {
+ width: auto;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: auto;
+ margin-right: auto;
+ padding-top: 2em;
+ padding-bottom: 2em;
+ padding-left: 0;
+ padding-right: 0;
+ background-color: white;
+ box-shadow: 0 0 5px black;
+}
+
+figure img {
+ width: 100%;
+}
+
+figure figcaption {
+ color: black;
+ text-align: right;
+ font-weight: 400;
+ font-size: 2em;
+ font-family: 'Reenie Beanie', cursive;
+}
+
+p {
+ padding: 1em;
+ text-indent: 2em;
+ font-weight: 400;
+ font-size: 2em;
+ font-family: 'Arapey', serif;
+ background-color: white;
+ box-shadow: 0 0 5px black;
+}
+
+blockquote p {
+ text-align: left;
+ text-indent: 0;
+ font-family: 'Reenie Beanie', cursive;
+}
+
+iframe {
+ width: 100%;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: auto;
+ margin-right: auto;
+ padding-top: 2em;
+ padding-bottom: 2em;
+ padding-left: 0;
+ padding-right: 0;
+ background-color: white;
+ box-shadow: 0 0 5px black;
+}
+
+h1 { /* decorative page title */
+ word-wrap: break-word;
+ margin: 0;
+ margin-bottom: 5px;
+ font-weight: 400;
+ font-size: 5em;
+ font-family: 'Fredericka the Great', cursive;
+ text-align: center;
+ color: black;
+}
+
+h2 { /* decorative page subtitle */
+ font-weight: 400;
+ font-size: 4em;
+ font-family: 'Reenie Beanie', cursive;
+ text-align: center;
+ color: black;
+}
+
+h3 { /* section title */
+ margin: 1em;
+ margin-left: 0;
+ padding: 0;
+ font-weight: 400;
+ font-size: 3em;
+ font-family: 'Arapey', serif;
+ text-align: left;
+ text-indent: 0;
+ color: black;
+}
+
+
diff --git a/md/wedding/accomodations/bg.jpg b/md/wedding/accomodations/bg.jpg
deleted file mode 100644
index 46d35cf..0000000
--- a/md/wedding/accomodations/bg.jpg
+++ /dev/null
Binary files differ
diff --git a/md/wedding/index.md b/md/wedding/index.md
index 8241dd5..f421785 100644
--- a/md/wedding/index.md
+++ b/md/wedding/index.md
@@ -26,7 +26,7 @@ If you're technologically savvy (you made it here!) then you may RSVP through th
### Morning-After Brunch
-Don't skip town just yet! Dianne and Terry Squire invite you to a morning-after brunch honoring the new Mr. and Mrs. Carpenter. It will take place on August 10^th^ 9:00-11:00AM at The Crew's Nest. If you are interested please call Dianne at [330-697-9632](tel: 330-697-9632) before August 9^th^.
+Don't skip town just yet! Dianne and Terry Squire invite you to a morning-after brunch honoring the new Mr. and Mrs. Carpenter. It will take place on August 10^th^ 9:00-11:00AM at The Crew's Nest. If you are interested please call Dianne at [330-697-9632](tel: 330-697-9632) before August 9^th^. [Click here for the invitation](invite.pdf).
### Photo Gallery
diff --git a/md/wedding/invite.pdf b/md/wedding/invite.pdf
new file mode 100644
index 0000000..8ba7899
--- /dev/null
+++ b/md/wedding/invite.pdf
Binary files differ
diff --git a/md/wedding/nav.html b/md/wedding/nav.html
index de3f4c4..7ad151f 100644
--- a/md/wedding/nav.html
+++ b/md/wedding/nav.html
@@ -6,5 +6,5 @@
<a href="/accomodations">Accomodations</a>
<a target="_blank" href="https://www.putinbay.com/transportation.htm">Transportation</a>
<a target="_blank" href="https://www.putinbay.com/attractions.htm">Attractions</a>
- <a href="https://tendr.com/amyandadamweddin">Registry</a>
+ <a target="_blank" href="https://tendr.com/amyandadamweddin">Registry</a>
</nav>
diff --git a/md/wedding/rsvp/bg.jpg b/md/wedding/rsvp/bg.jpg
deleted file mode 100644
index 34684f6..0000000
--- a/md/wedding/rsvp/bg.jpg
+++ /dev/null
Binary files differ