Explorar el Código

minor chages - added breadcrumb to top of page, sidebar layout preview for list type

tags/0.9.0
Alej hace 4 años
padre
commit
f4257eeaed
Se han modificado 1 ficheros con 13 adiciones y 4 borrados
  1. 13
    4
      vue-theme/src/pages/list.vue

+ 13
- 4
vue-theme/src/pages/list.vue Ver fichero

@@ -1,6 +1,9 @@
1 1
 <template lang="pug">
2 2
 .page--list.f-col.between
3 3
     article.f-grow
4
+        //- breadcrumb links here at top of page
5
+        h3.t-up.breadcrumb {{ type }}
6
+
4 7
         header.f-col.center.t-up
5 8
             .title.f-row
6 9
                 h1 {{ type }} list
@@ -18,7 +21,7 @@
18 21
                         h2.t-up {{ post.title }}
19 22
                 article
20 23
                     h4 {{ post.date }}
21
-                    p Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras eu elit in ex pharetra volutpat ac at magna. Duis libero est, imperdiet non sollicitudin vel, eleifend at ante...
24
+                    p {{ post.excerpt }}
22 25
 
23 26
         footer
24 27
             p {{ `${type} count: ${Object.values(posts).length}` }}
@@ -26,10 +29,16 @@
26 29
         
27 30
     sidebar(v-if="sidebar" :type="`${type}`")
28 31
         .shadow
29
-            h1.t-up slots stuff
32
+            h3.t-up Upcoming {{ type }}
30 33
             div
31
-                p more body whatever
32
-                p another line of stuff
34
+                h1 upcoming title
35
+                p date-from: date-to: 
36
+                p location
37
+                br
38
+                h1 upcoming title
39
+                p date-from: date-to: 
40
+                p location
41
+
33 42
 </template>
34 43
 
35 44
 <script>

Loading…
Cancelar
Guardar