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.
23 lines
994 B
23 lines
994 B
doctype html
|
|
include @/helper/ui.pug
|
|
|
|
html(lang="zh-cn")
|
|
block var
|
|
head
|
|
meta(charset="UTF-8")
|
|
meta(http-equiv="X-UA-Compatible", content="IE=edge")
|
|
link(rel="shortcut icon" href="/public/favicon.ico" type="image/x-icon")
|
|
//- device-width 宽度低于1100像素的设备直接缩小
|
|
meta(name="viewport", content="width=1100, initial-scale=1.0")
|
|
title #{title || 'WEB'}
|
|
link(rel="stylesheet", href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css", integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx", crossorigin="anonymous")
|
|
+css("style/common/style.css")
|
|
block head
|
|
body
|
|
if !hideHeader
|
|
+header()
|
|
block content
|
|
script(src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js", integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa", crossorigin="anonymous")
|
|
+mdScript()
|
|
block script
|
|
include @/helper/rain.pug
|