div
article.articleDetails
.articleTitle
| {{ Articels.post_title }}
.articalMeta
ul
li
Icon(:icon="['far', 'calendar-alt']")
| {{ Articels.post_date }}
li
Icon(:icon="['far', 'bookmark']")
nuxt-link(v-for='(relationships, index) in Articels.term_relationships', :key='index', v-if='relationships.term_taxonomy', :to="'/' + relationships.term_taxonomy.term.slug")
span
| {{ relationships.term_taxonomy.term.name }}
li(v-if='Articels.postmetum.meta_value !== 0')
Icon(:icon="['fas', 'thermometer-' + Articels.hotValue]")
| {{ Articels.postmetum.meta_value }}
#articelToc.articelToc(v-if="Articels.post_toc_show")
.articelTitle 目录
.articelTocList(v-html="Articels.post_toc")
.articelContent(v-html='Articels.post_content')
ins.adsbygoogle(style="display:block; text-align:center; margin-top:20px;", data-ad-layout="in-article", data-ad-format="fluid", data-ad-client="ca-pub-2143583075951360", data-ad-slot="4741804954")
.articelRightToc(v-show="Articels.post_toc_show && showRightToc", @click="articelRightTocClick")
.articelTitle 目录
.articelTocList(v-html="Articels.post_toc")
nuxt-link(:to="Articels.last ? '/post/' + Articels.last.ID : ''")
.btnFooter.btnPrevt(:style="'color: ' + (Articels.last ? '#333' : '#ccc')")
Icon(:icon="['fas', 'chevron-left']")
| 上一篇 {{ Articels.last ? '(' + decodeTitle(Articels.last.post_name) + ')' : ''}}
nuxt-link(:to="Articels.next ? '/post/' + Articels.next.ID : ''")
.btnFooter.btnNext(:style="'color: ' + (Articels.next ? '#333' : '#ccc')")
| 下一篇 {{ Articels.next ? '(' + decodeTitle(Articels.next.post_name) + ')' : ''}}
Icon(:icon="['fas', 'chevron-right']")
.comment