浏览代码

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

tags/0.9.0
Alej 4 年前
父节点
当前提交
f4257eeaed
共有 1 个文件被更改,包括 13 次插入4 次删除
  1. 13
    4
      vue-theme/src/pages/list.vue

+ 13
- 4
vue-theme/src/pages/list.vue 查看文件

1
 <template lang="pug">
1
 <template lang="pug">
2
 .page--list.f-col.between
2
 .page--list.f-col.between
3
     article.f-grow
3
     article.f-grow
4
+        //- breadcrumb links here at top of page
5
+        h3.t-up.breadcrumb {{ type }}
6
+
4
         header.f-col.center.t-up
7
         header.f-col.center.t-up
5
             .title.f-row
8
             .title.f-row
6
                 h1 {{ type }} list
9
                 h1 {{ type }} list
18
                         h2.t-up {{ post.title }}
21
                         h2.t-up {{ post.title }}
19
                 article
22
                 article
20
                     h4 {{ post.date }}
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
         footer
26
         footer
24
             p {{ `${type} count: ${Object.values(posts).length}` }}
27
             p {{ `${type} count: ${Object.values(posts).length}` }}
26
         
29
         
27
     sidebar(v-if="sidebar" :type="`${type}`")
30
     sidebar(v-if="sidebar" :type="`${type}`")
28
         .shadow
31
         .shadow
29
-            h1.t-up slots stuff
32
+            h3.t-up Upcoming {{ type }}
30
             div
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
 </template>
42
 </template>
34
 
43
 
35
 <script>
44
 <script>

正在加载...
取消
保存