2018-05-29 08:59:41 +02:00
|
|
|
<template>
|
|
|
|
|
|
|
|
<ul class="feature-links">
|
2018-05-29 17:23:44 +02:00
|
|
|
<li v-for="featureLink in this.$page.frontmatter.featureLinks" class="feature-link">
|
|
|
|
<div>
|
|
|
|
<a :href="featureLink.href" class="feature-link__title">{{ featureLink.title }}</a>
|
|
|
|
<div v-if="featureLink.details" class="feature-link__details">{{ featureLink.details }}</div>
|
|
|
|
</div>
|
2018-05-29 08:59:41 +02:00
|
|
|
|
2018-05-29 17:23:44 +02:00
|
|
|
<figure class="feature-link__background">
|
|
|
|
<img v-if="featureLink.image" :src="featureLink.image" :alt="featureLink.title"/>
|
2018-05-29 08:59:41 +02:00
|
|
|
</figure>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import "../scss/init/colors";
|
|
|
|
@import "../scss/init/mixins";
|
2018-05-29 17:23:44 +02:00
|
|
|
@import "../scss/components/feature-links";
|
2018-05-29 08:59:41 +02:00
|
|
|
</style>
|