🚧 Set up more in html5 and pug5
This commit is contained in:
parent
4a5a563e68
commit
b69e90b70a
2 changed files with 10 additions and 6 deletions
|
|
@ -7,12 +7,14 @@ cat <<EOM
|
|||
<title>html page</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large">
|
||||
<meta>name="description" content="">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
</body>
|
||||
<script src="./index.js" default></script>
|
||||
</html>
|
||||
EOM
|
||||
EOM
|
||||
10
scripts/pug5
10
scripts/pug5
|
|
@ -5,10 +5,12 @@ doctype html
|
|||
html(lang = "en")
|
||||
head
|
||||
title html page
|
||||
meta(charset='utf-8')
|
||||
meta(name='viewport' content='width=device-width, initial-scale=1')
|
||||
meta(charset="utf-8")
|
||||
meta(name="viewport" content="width=device-width, initial-scale=1")
|
||||
meta(name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large")
|
||||
meta(name="description" content="")
|
||||
link(rel="icon" type="image/x-icon" href="favicon.png")
|
||||
link(rel='stylesheet' type='text/css' href='css/style.css')
|
||||
link(rel="stylesheet" type="text/css" href="css/style.css")
|
||||
body
|
||||
script(src="./index.js" default)
|
||||
EOM
|
||||
EOM
|
||||
Loading…
Add table
Add a link
Reference in a new issue