blog back

This commit is contained in:
2021-05-24 14:42:34 +02:00
parent 0f3f97d0d6
commit 631f79a703
5 changed files with 54 additions and 4 deletions

View File

@@ -34,11 +34,11 @@
</div>
<div class="flex-1 bg-white p-6 flex flex-col justify-between">
<div class="flex-1">
<p class="text-sm leading-5 font-medium text-indigo-600">
<!-- <p class="text-sm leading-5 font-medium text-indigo-600">
<a :href="blog.tagUrl" class="hover:underline">
{{ blog.tag }}
</a>
</p>
</p> -->
<a :href="blog.blogUrl" class="block">
<h3 class="mt-2 text-xl leading-7 font-semibold text-gray-900">
{{ blog.title }}

View File

@@ -65,6 +65,12 @@
:id="$page.markdownPage.id"
/>
<Blogs
v-if="$page.markdownPage.blogs || $page.markdownPage.BlogsMain"
:main="$page.markdownPage.BlogsMain"
:blogs="$page.markdownPage.blogs"
/>
<InTheNews
v-if="$page.markdownPage.inTheNews"
:news="$page.markdownPage.inTheNews"
@@ -153,7 +159,23 @@
link3
link4
}
BlogsMain{
id
title
content
}
blogs{
id
image
tagUrl
tag
blogUrl
title
authorUrl
authorImg
author
content
}
cta2{
id
title
@@ -331,6 +353,7 @@ import Header from "~/components/marketing/sections/cta-sections/Header.vue";
import SolutionsHeader from "~/components/custom/sections/header/HeaderSection.vue";
import ShowcaseProducts from "~/components/marketing/sections/cta-sections/ShowcaseProductsHome.vue";
import Comparison from "~/components/custom/sections/Comparison.vue";
import Blogs from "~/components/marketing/sections/blog-sections/3_column_cards.vue";
import Features from "~/components/custom/sections/Features.vue";
import Map from "~/components/marketing/sections/cta-sections/StateMap.vue";
import NewCard from "~/components/marketing/sections/cta-sections/NewCard.vue";
@@ -362,6 +385,7 @@ export default {
CallToActionbg2,
InTheNews,
SignUp,
Blogs,
VideoPanel,
Partenerships,
},