diff --git a/home/_data/for_b.yml b/home/_data/for_b.yml new file mode 100644 index 00000000..5ca367cc --- /dev/null +++ b/home/_data/for_b.yml @@ -0,0 +1,37 @@ +header: + title: For buisness + text: | + This pipe does something a little different. + It preserves the breaks. + This is really helpful for code samples, + since you can format the code samples with + the appropriate + +features: + - title: mountain bikes + subtitle: very intresting + description: long text describing this + link: Https://example.com/ + + - title: mountain bikes1 + subtitle: very intresting1 + description: long text describing this1 + link: Https://example.com/1 + + - title: mountain bikes2 + subtitle: very intresting2 + description: long text describing this2 + link: Https://example.com/2 + + - title: mountain bikes3 + subtitle: very intresting3 + description: long text describing this3 + link: Https://example.com/3 + +cta: + text: Want to know more? Try out our demo or read more in the enterprise docs! + btn: + - text: open demo + link: https://a.bb/ + - text: enterprise docs + link: https://c.dd/ \ No newline at end of file diff --git a/home/_data/for_h.yml b/home/_data/for_h.yml new file mode 100644 index 00000000..40243d8a --- /dev/null +++ b/home/_data/for_h.yml @@ -0,0 +1,17 @@ +header: + title: For hobbists + text: | + This pipe does something a little different. + It preserves the breaks. + + +features: + - title: mountain bikes + subtitle: very intresting + description: long text describing this + link: Https://example.com/ + + - title: mountain bikes3 + subtitle: very intresting3 + description: long text describing this3 + link: Https://example.com/3 \ No newline at end of file diff --git a/home/_includes/cta.html b/home/_includes/cta.html index ed580169..3fd40730 100644 --- a/home/_includes/cta.html +++ b/home/_includes/cta.html @@ -1,8 +1,14 @@ -
+
+ {% unless include.no_container %}
+ {% endunless %}
-

Slow-carb next level shoindxgoitch ethical authentic, scenester sriracha forage.

- +

{{ include.cta.text }}

+ {% for item in include.cta.btn %} + + {% endfor %}
+ {% unless include.no_container %}
+ {% endunless %}
\ No newline at end of file diff --git a/home/_includes/features.html b/home/_includes/features.html index 2bc706f3..4ee91bcf 100644 --- a/home/_includes/features.html +++ b/home/_includes/features.html @@ -1,41 +1,27 @@ -
+
-
+
-

Pitchfork Kickstarter Taxidermy

+

{{ include.data.header.title }}

-

Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical gentrify, subway tile poke farm-to-table. Franzen you probably haven't heard of them man bun deep jianbing selfies heirloom prism food truck ugh squid celiac humblebrag.

+

{{ include.data.header.text }}

+
+ {% for item in include.data.features %}
-

SUBTITLE

-

Chichen Itza

-

Fingerstache flexitarian street art 8-bit waistcoat. Distillery hexagon disrupt edison bulbche.

-
-
-
-
-

SUBTITLE

-

Colosseum Roma

-

Fingerstache flexitarian street art 8-bit waistcoat. Distillery hexagon disrupt edison bulbche.

-
-
-
-
-

SUBTITLE

-

Great Pyramid of Giza

-

Fingerstache flexitarian street art 8-bit waistcoat. Distillery hexagon disrupt edison bulbche.

-
-
-
-
-

SUBTITLE

-

San Francisco

-

Fingerstache flexitarian street art 8-bit waistcoat. Distillery hexagon disrupt edison bulbche.

+

{{ item.subtitle }}

+

{{ item.title }}

+

{{ item.tagline }}

+ {% endfor %}
+ + {% if include.data.cta %} + {% include cta.html no_container=true cta=include.data.cta %} + {% endif %}
\ No newline at end of file diff --git a/home/index.md b/home/index.md index 1ab2e069..d007109f 100644 --- a/home/index.md +++ b/home/index.md @@ -6,11 +6,13 @@ backLink: false {% include hero.html %} -{% include cta.html %} +{% assign for_b = site.data.for_b %} +{% include features.html data=for_b %} -{% include features.html %} + +{% assign for_h = site.data.for_h %} +{% include features.html data=for_h %} {% include cta.html %} - --- diff --git a/home/styles/index.css b/home/styles/index.css index 7fcf8268..e3b4c23d 100644 --- a/home/styles/index.css +++ b/home/styles/index.css @@ -22,6 +22,10 @@ @apply title-font font-medium text-gray-900 tracking-widest text-sm mb-3 */ } + + .cm-text-body { + @apply text-gray-600 body-font + } } .bg-primary {