Explorar el Código

Hero overlay text to post.content for Home page

tags/0.9.0
Alej hace 4 años
padre
commit
1a5f49f57a
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2
    1
      vue-theme/src/pages/mixin-post-types.js

+ 2
- 1
vue-theme/src/pages/mixin-post-types.js Ver fichero

@@ -57,7 +57,8 @@ const heroUtils = {
57 57
             if (!json.url) { json.heroType = null }
58 58
             // Uncomment to set the hero text to the post title or excerpt
59 59
             // json.text = post && post.excerpt ? post.excerpt : post.title
60
-            json.text = post.title
60
+            // json.text = post.title
61
+            json.text = post && post.content ? post.content : post.title
61 62
             return json
62 63
         },
63 64
         _clearHero(store) {

Loading…
Cancelar
Guardar