diff --git a/content/page/careers/customCTA/cta.md b/content/page/careers/customCTA/cta.md index c3f54220e..e0ee21e5a 100644 --- a/content/page/careers/customCTA/cta.md +++ b/content/page/careers/customCTA/cta.md @@ -2,5 +2,5 @@ id: careers link: /community title: Join our Community -img: ./threefold_people.png +image: ./threefold_people.png --- \ No newline at end of file diff --git a/content/page/community/customCTA/cta_2.md b/content/page/community/customCTA/cta_2.md index bfea4c9c3..e54bc3007 100644 --- a/content/page/community/customCTA/cta_2.md +++ b/content/page/community/customCTA/cta_2.md @@ -2,5 +2,5 @@ id: community link: /careers title: Join our Team -img: ./threefold_people.png +image: ./threefold_people.png --- \ No newline at end of file diff --git a/src/components/custom/sections/CustomCTA.vue b/src/components/custom/sections/CustomCTA.vue index 532b01c60..69803fc83 100644 --- a/src/components/custom/sections/CustomCTA.vue +++ b/src/components/custom/sections/CustomCTA.vue @@ -6,11 +6,15 @@ +
@@ -20,6 +24,7 @@ export default { margin: 0; padding: 120px 0; text-align: center; + position: relative; display: block; color: #fff !important; letter-spacing: 0.5px; @@ -60,10 +65,6 @@ export default { transition: 1.5s; } -/* .banner.banner-careers .back { - background-image: url(images/holo-team-banner.jpg) -} */ - .banner:hover { background: #4b3a92; } @@ -78,7 +79,7 @@ export default { } .banner:hover .back { - /* transform: scale(1.03) */ + transform: scale(1.03); } @media (max-width: 640px) { diff --git a/src/templates/Job.vue b/src/templates/Job.vue index 69265853e..db61fe60c 100644 --- a/src/templates/Job.vue +++ b/src/templates/Job.vue @@ -48,6 +48,7 @@ :key="edge.node.id" :title="edge.node.title" :link="edge.node.link" + :image="edge.node.image" /> @@ -68,6 +69,7 @@ id title link + image } } } diff --git a/src/templates/MarkdownPage.vue b/src/templates/MarkdownPage.vue index 95b95b981..2a6f1e966 100644 --- a/src/templates/MarkdownPage.vue +++ b/src/templates/MarkdownPage.vue @@ -179,6 +179,7 @@ v-if="edge.node.id == $page.markdownPage.id" :title="edge.node.title" :link="edge.node.link" + :image="edge.node.image" /> @@ -395,6 +396,7 @@ id title link + image } } }