This commit is contained in:
samaradel
2021-02-10 12:20:20 +02:00
parent b9affebf13
commit e37ea61f6a
4 changed files with 47 additions and 48 deletions

View File

@@ -2,6 +2,7 @@
id: home id: home
header_title: BIG TITLE header_title: BIG TITLE
header_image: ./image_name.png header_image: ./image_name.png
header_altImg: BIG TITLE
header_excerpt: Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. header_excerpt: Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
button: Button button: Button
link: '' #link for button link: '' #link for button

View File

@@ -20,10 +20,7 @@
:card="card" :card="card"
/> />
<CallToAction <CallToAction v-if="$page.markdownPage.cta" :cta="$page.markdownPage.cta" />
v-if="$page.markdownPage.cta"
:cta="$page.markdownPage.cta"
/>
<logoShowcase <logoShowcase
v-if="$page.markdownPage.logos.length > 0" v-if="$page.markdownPage.logos.length > 0"

View File

@@ -49,7 +49,8 @@
<Comparison <Comparison
v-if=" v-if="
$page.markdownPage.comparisonSecs && $page.markdownPage.comparisonSecs &&
$page.markdownPage.comparisonSecs.length > 0" $page.markdownPage.comparisonSecs.length > 0
"
:main="$page.markdownPage.comparisonMain" :main="$page.markdownPage.comparisonMain"
:sections="$page.markdownPage.comparisonSecs" :sections="$page.markdownPage.comparisonSecs"
/> />
@@ -157,13 +158,13 @@
id id
title title
subtitle subtitle
image # image
} }
productData{ productData{
id id
title title
content content
image # image
} }
featuresMain{ featuresMain{
id id
@@ -307,7 +308,7 @@ export default {
}; };
}, },
mounted() { mounted() {
// console.log(this.$page.markdownPage.plans); console.log(this.$page.markdownPage);
}, },
}; };
</script> </script>

View File

@@ -113,7 +113,7 @@ query ($private: Int){
header_title header_title
header_excerpt header_excerpt
path path
title # title
excerpt excerpt
} }
} }