From bd9a50e9c824e89d8a91fd54c8bc838cdfa796f6 Mon Sep 17 00:00:00 2001 From: Darin Dimitroff Date: Sun, 1 Jan 2017 16:39:14 +0200 Subject: Initial commit --- site/layouts/partials/2-up.html | 24 +++++++++++ site/layouts/partials/4-up.html | 36 +++++++++++++++++ site/layouts/partials/about.html | 21 ++++++++++ site/layouts/partials/blockquote.html | 6 +++ site/layouts/partials/blog.html | 22 ++++++++++ site/layouts/partials/footer.html | 56 ++++++++++++++++++++++++++ site/layouts/partials/header.html | 7 +++- site/layouts/partials/image-grid.html | 17 ++++++++ site/layouts/partials/jumbotron.html | 18 +++++++++ site/layouts/partials/media-block-reverse.html | 12 ++++++ site/layouts/partials/media-block.html | 12 ++++++ site/layouts/partials/nav.html | 12 ++++++ site/layouts/partials/pricing-card.html | 27 +++++++++++++ site/layouts/partials/short-text.html | 6 +++ site/layouts/partials/social-icon.html | 7 ++++ site/layouts/partials/svg.html | 5 +++ site/layouts/partials/table.html | 25 ++++++++++++ 17 files changed, 312 insertions(+), 1 deletion(-) create mode 100644 site/layouts/partials/2-up.html create mode 100644 site/layouts/partials/4-up.html create mode 100644 site/layouts/partials/about.html create mode 100644 site/layouts/partials/blockquote.html create mode 100644 site/layouts/partials/blog.html create mode 100644 site/layouts/partials/image-grid.html create mode 100644 site/layouts/partials/jumbotron.html create mode 100644 site/layouts/partials/media-block-reverse.html create mode 100644 site/layouts/partials/media-block.html create mode 100644 site/layouts/partials/nav.html create mode 100644 site/layouts/partials/pricing-card.html create mode 100644 site/layouts/partials/short-text.html create mode 100644 site/layouts/partials/social-icon.html create mode 100644 site/layouts/partials/svg.html create mode 100644 site/layouts/partials/table.html (limited to 'site/layouts/partials') diff --git a/site/layouts/partials/2-up.html b/site/layouts/partials/2-up.html new file mode 100644 index 0000000..d4f30fe --- /dev/null +++ b/site/layouts/partials/2-up.html @@ -0,0 +1,24 @@ +
+
+

{{.heading}}

+

{{.description}}

+ +
+
+ +

{{.text1}}

+
+ +
+ +

{{.text2}}

+
+
+ + {{ if .buttonText }} + + {{ end }} +
+
diff --git a/site/layouts/partials/4-up.html b/site/layouts/partials/4-up.html new file mode 100644 index 0000000..dff48b4 --- /dev/null +++ b/site/layouts/partials/4-up.html @@ -0,0 +1,36 @@ +
+
+

{{.heading}}

+

{{.description}}

+ +
+ +
+ +

{{.text1}}

+
+ +
+ +

{{.text2}}

+
+ +
+ +

{{.text3}}

+
+ +
+ +

{{.text4}}

+
+ +
+ + {{ if .buttonText }} + + {{ end }} +
+
diff --git a/site/layouts/partials/about.html b/site/layouts/partials/about.html new file mode 100644 index 0000000..657aead --- /dev/null +++ b/site/layouts/partials/about.html @@ -0,0 +1,21 @@ +
+
+ +
+
+

{{.heading}}

+ +

{{.text}}

+
+ +
+ +
+
+ + + +
+
diff --git a/site/layouts/partials/blockquote.html b/site/layouts/partials/blockquote.html new file mode 100644 index 0000000..6f432bd --- /dev/null +++ b/site/layouts/partials/blockquote.html @@ -0,0 +1,6 @@ +
+
+

{{.quote}}

+ {{.author}} +
+
diff --git a/site/layouts/partials/blog.html b/site/layouts/partials/blog.html new file mode 100644 index 0000000..c8f5ff1 --- /dev/null +++ b/site/layouts/partials/blog.html @@ -0,0 +1,22 @@ +
+
+ +

post section

+ + +
+ + {{ range where .Data.Pages "Type" "post" }} +
+ {{ .Render "li" }} +
+ {{ end }} + +
+ +
+ Read more +
+ +
+
diff --git a/site/layouts/partials/footer.html b/site/layouts/partials/footer.html index 310a610..629e288 100644 --- a/site/layouts/partials/footer.html +++ b/site/layouts/partials/footer.html @@ -1,3 +1,59 @@ + + +{{ partial "svg" . }} + + + diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html index c84dc6e..c9268c2 100644 --- a/site/layouts/partials/header.html +++ b/site/layouts/partials/header.html @@ -3,5 +3,10 @@ Hugo with Gulp and Webpack + + + + + - + diff --git a/site/layouts/partials/image-grid.html b/site/layouts/partials/image-grid.html new file mode 100644 index 0000000..25bf701 --- /dev/null +++ b/site/layouts/partials/image-grid.html @@ -0,0 +1,17 @@ +
+ +
+
+ +
+ +
+ +
+ +
+ +
+
+ +
diff --git a/site/layouts/partials/jumbotron.html b/site/layouts/partials/jumbotron.html new file mode 100644 index 0000000..b843c1c --- /dev/null +++ b/site/layouts/partials/jumbotron.html @@ -0,0 +1,18 @@ +
+
+
+
+

+ {{.title}} +

+
+
+ {{ if .subtitle }} +

+ {{.subtitle}} +

+ {{ end }} +
+
+
+
diff --git a/site/layouts/partials/media-block-reverse.html b/site/layouts/partials/media-block-reverse.html new file mode 100644 index 0000000..a7b8c18 --- /dev/null +++ b/site/layouts/partials/media-block-reverse.html @@ -0,0 +1,12 @@ +
+ +
+ +
+ +
+

{{.heading}}

+

{{.text}}

+
+ +
diff --git a/site/layouts/partials/media-block.html b/site/layouts/partials/media-block.html new file mode 100644 index 0000000..db5f619 --- /dev/null +++ b/site/layouts/partials/media-block.html @@ -0,0 +1,12 @@ +
+ +
+ +
+ +
+

{{.heading}}

+

{{.text}}

+
+ +
diff --git a/site/layouts/partials/nav.html b/site/layouts/partials/nav.html new file mode 100644 index 0000000..8225a10 --- /dev/null +++ b/site/layouts/partials/nav.html @@ -0,0 +1,12 @@ + diff --git a/site/layouts/partials/pricing-card.html b/site/layouts/partials/pricing-card.html new file mode 100644 index 0000000..2f009b2 --- /dev/null +++ b/site/layouts/partials/pricing-card.html @@ -0,0 +1,27 @@ +
+ + +

{{.plan}}

+ + +

+ ${{.price}} +

+ + +

{{.description}}

+ + + + +
diff --git a/site/layouts/partials/short-text.html b/site/layouts/partials/short-text.html new file mode 100644 index 0000000..7f10bb7 --- /dev/null +++ b/site/layouts/partials/short-text.html @@ -0,0 +1,6 @@ +
+
+

{{.heading}}

+

{{.text}}

+
+
diff --git a/site/layouts/partials/social-icon.html b/site/layouts/partials/social-icon.html new file mode 100644 index 0000000..6d616be --- /dev/null +++ b/site/layouts/partials/social-icon.html @@ -0,0 +1,7 @@ +
  • + + + + + +
  • diff --git a/site/layouts/partials/svg.html b/site/layouts/partials/svg.html new file mode 100644 index 0000000..7a0c34d --- /dev/null +++ b/site/layouts/partials/svg.html @@ -0,0 +1,5 @@ +
    + + 500px-blackAirbnb-blackAmazon-blackFacebook-black + +
    diff --git a/site/layouts/partials/table.html b/site/layouts/partials/table.html new file mode 100644 index 0000000..66da24c --- /dev/null +++ b/site/layouts/partials/table.html @@ -0,0 +1,25 @@ +
    + +
    + +

    {{.heading}}

    +

    {{.text}}

    + +
    + +
    {{ partial "pricing-card" (dict "plan" "Small" "price" "50" "description" "Perfect for the drinker who likes to enjoy 1-2 cups per day." "item1" "3 lbs of coffee per month" "item2" "Green or roasted beans" "item3" "One or two varieties of beans") }} +
    + +
    + {{ partial "pricing-card" (dict "plan" "Big" "price" "80" "description" "Great for avid drinkers, java-loving couples and bigger crowds" "item1" "6 lbs of coffee per month" "item2" "Green or roasted beans" "item3" "Up to 4 different varieties of beans") }} +
    + +
    + {{ partial "pricing-card" (dict "plan" "Small" "price" "80" "description" "Want a few tiny batches from different varieties? Try our custom plan" "item1" "However little or much you need" "item2" "Green or roasted beans" "item3" "Unlimited varieties") }} +
    + +
    + +
    + +
    -- cgit v1.3