diff --git a/config.yaml b/config.yaml index 2e3c8ac..3458d79 100644 --- a/config.yaml +++ b/config.yaml @@ -45,7 +45,7 @@ params: # Hero subtitle (optional) subtitle: Connect people and software together in a way that makes sense to everyone. # Button text - buttontext: Free Trial! + buttontext: Try it now! # Where the main hero button links to buttonlink: "/posts/articles/get_started/" # Hero image (from static/get_started/___) @@ -138,7 +138,7 @@ params: buttonLink: "/pages/features/" section4: title: Join the Innovators - subtitle: We are just getting started. Join these innovators and help us continue to refine and improve this important open source project. + subtitle: Join these innovators and help us continue to refine and improve this important open source project. clients: - name: Jarrad Hope quote: I’m proud of our investment in SpiffWorkflow. It’s in line with our mission and core principles of purposeful technology, public good, and openness. I am excited about the future and looking forward to working with you. @@ -148,7 +148,12 @@ params: quote: You guys are rock stars. I really appreciate your passion and your expertise on this project. I’m very excited too about what we can do with it in the future. job: VP - IT - UVA img: ron + - name: Demetrick Ferguson + quote: Organizations large and small need SpiffWorkflow! SpiffWorkflow makes it possible to execute adaptable business processes that more than one person, more than one department, can understand. + job: Portfolio Performance and Governance - Status + img: demetrick section5: true + section6: true footer: # Logo (from /get_started/logos/___) logo: spiffworkflow_white.svg diff --git a/layouts/partials/calendly.html b/layouts/partials/calendly.html index 79d213c..34789a6 100644 --- a/layouts/partials/calendly.html +++ b/layouts/partials/calendly.html @@ -3,7 +3,7 @@ - Request a Demo + Schedule Demo diff --git a/layouts/partials/contact_form.html b/layouts/partials/contact_form.html index d08adac..057f77f 100644 --- a/layouts/partials/contact_form.html +++ b/layouts/partials/contact_form.html @@ -3,6 +3,6 @@ hbspt.forms.create({ region: "na1", portalId: "42562038", - formId: "1c67d053-d29d-4ea7-a426-de96c5ed0d42" + formId: "2f6bed8b-3c81-4ea9-a475-91e8e0a69c1d" }); \ No newline at end of file diff --git a/layouts/partials/newsletter_form.html b/layouts/partials/newsletter_form.html new file mode 100644 index 0000000..d08adac --- /dev/null +++ b/layouts/partials/newsletter_form.html @@ -0,0 +1,8 @@ + + \ No newline at end of file diff --git a/layouts/partials/section5.html b/layouts/partials/section5.html index 9b72f39..48bbfb0 100644 --- a/layouts/partials/section5.html +++ b/layouts/partials/section5.html @@ -1,8 +1,8 @@
-

Newsletter

-

Get regular updates on our progress!

+

Contact Us

+

Complete the form below, and we will get in contact with you shortly!

{{ partial "contact_form.html" . }} diff --git a/layouts/partials/section6.html b/layouts/partials/section6.html new file mode 100644 index 0000000..f107cc2 --- /dev/null +++ b/layouts/partials/section6.html @@ -0,0 +1,38 @@ +
+
+
+

Learn More

+

Check out these articles on Medium ...

+
+
+
+
+ {{ with resources.GetRemote "https://medium.com/feed/@danfunk" | transform.Unmarshal }} + {{ range .channel.item }} + + {{ $link := .link | plainify | htmlUnescape }} + {{ $content := .encoded }} + {{ $figure := findRESubmatch `
\s?[^ +
+

{{ .title | plainify | htmlUnescape }}

+

{{ .pubDate }}

+
+
+ +
+
+

{{ $content | plainify | htmlUnescape | truncate 50}}

+
+
+ Read More +
+
+ {{ end }} + {{ end }} +
+
+
+ diff --git a/static/css/custom.css b/static/css/custom.css index b875686..6044076 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -111,3 +111,25 @@ div.admonition p.admonition-title { div.admonition p.last { margin-bottom: 0; } + +div.articles { + display:flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: flex-start; + align-content: flex-start; + align-items: stretch; +} + +div.articles div.feature-card { + margin-bottom: 25px; + height: 380px; + width: 360px; +} + +div.articles .feature-card .card-action { + margin-top: 10px; + position: absolute; + bottom: 10px; + right: 10px; +} \ No newline at end of file diff --git a/static/images/illustrations/faces/demetrick.png b/static/images/illustrations/faces/demetrick.png new file mode 100644 index 0000000..e227873 Binary files /dev/null and b/static/images/illustrations/faces/demetrick.png differ diff --git a/static/images/illustrations/faces/jarrad.png b/static/images/illustrations/faces/jarrad.png index 20c5a15..8ab8756 100644 Binary files a/static/images/illustrations/faces/jarrad.png and b/static/images/illustrations/faces/jarrad.png differ diff --git a/static/images/illustrations/faces/ron.png b/static/images/illustrations/faces/ron.png index 9f1bf4e..4a6fef5 100644 Binary files a/static/images/illustrations/faces/ron.png and b/static/images/illustrations/faces/ron.png differ diff --git a/themes/fresh/layouts/index.html b/themes/fresh/layouts/index.html index 1d00000..f2f83eb 100644 --- a/themes/fresh/layouts/index.html +++ b/themes/fresh/layouts/index.html @@ -23,6 +23,11 @@ {{ partial "section5.html" . }} {{ end }} + {{ if .Site.Params.section6 }} + {{ partial "section6.html" . }} + {{ end }} + + {{ if .Site.Params.footer }} {{ partial "footer.html" . }} {{ end }}