You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.3 KiB

1 year ago
- var pageTitle = page.title || config.subtitle || ''
- if (is_archive()) pageTitle = 'Archives'
- if (is_tag()) pageTitle = 'Tag: ' + page.tag
- if (is_category()) pageTitle = 'Category: ' + page.category
- if (is_month()) pageTitle += ': ' + page.month + '/' + page.year
- if (is_year()) pageTitle += ': ' + page.year
- pageTitle += ' [ ' + config.title + ' ]'
doctype html
1 year ago
html(lang=config.language)
1 year ago
head
meta(charset='UTF-8')
title= pageTitle
1 year ago
//- script(src="/js/lazysizes.min.js")
1 year ago
if theme.stylesheets !== undefined && theme.stylesheets.length > 0
//- stylesheets list from _config.yml
each url in theme.stylesheets
link(rel='stylesheet', href=url)
body
1 year ago
#container.container
1 year ago
header#header.header
1 year ago
include ./_partials/header.pug
1 year ago
.bottom-declaration
.bottom-declaration-line
.bottom-declaration-dotted
1 year ago
1 year ago
main#main.main
#content.content
block content
1 year ago
1 year ago
footer#footer.footer
include ./_partials/footer.pug
.bottom-declaration
.bottom-declaration-line
.bottom-declaration-dotted
//- 这段script一定要放在body结束前,否则lazyload不生效
1 year ago
script(src="/js/lazyload.min.js")
script.
window.lazyLoad = new LazyLoad({
elements_selector: 'img',
threshold: 0
});