This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
huia/site/themes/beautiful-hexo/layout/post.jade

35 lines
1.2 KiB
Text

extends partial/base
include partial/post-meta
block header
header.header-section
.intro-header.no-img
.container
.row
.col-lg-8.col-lg-offset-2.col-md-10.col-md-offset-1
.post-heading
h1= page.title
if page.subtitle
h2.post-subheading= page.subtitle
+post_meta(page.date, page.tags)
block content
.container
.row
.col-lg-8.col-lg-offset-2.col-md-10.col-md-offset-1
article(role="main", class="blog-post")
!= page.content
ul.pager.blog-pager
if page.prev
li.previous
a(href=url_for(page.prev.path), data-toggle="tooltip", data-placement="top", title=page.prev.title)= __('prev_post')
if page.next
li.next
a(href=url_for(page.next.path), data-toggle="tooltip", data-placement="top", title=page.next.title)= __('next_post')
include partial/comment