@eox/pages-theme-eox 0.4.11 → 0.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -26,7 +26,7 @@ const featuresExcerpts = features.map((f) => {
|
|
|
26
26
|
<a
|
|
27
27
|
v-for="(feature, index) in featuresExcerpts.filter((f) => f)"
|
|
28
28
|
class="feature s12 m3"
|
|
29
|
-
:href="feature.link"
|
|
29
|
+
:href="withBase(feature.link)"
|
|
30
30
|
>
|
|
31
31
|
<article class="no-padding">
|
|
32
32
|
<img
|
|
@@ -38,7 +38,7 @@ const featuresExcerpts = features.map((f) => {
|
|
|
38
38
|
<h5 class="small">{{ feature.title }}</h5>
|
|
39
39
|
<p>{{ feature.description }}</p>
|
|
40
40
|
<nav>
|
|
41
|
-
<a class="button" :href="feature.link">
|
|
41
|
+
<a class="button" :href="withBase(feature.link)">
|
|
42
42
|
<span>Read more</span>
|
|
43
43
|
<i class="mdi mdi-arrow-right"></i>
|
|
44
44
|
</a>
|