notes/scripts/html5
2023-07-25 01:37:54 -07:00

32 lines
No EOL
1.5 KiB
Bash
Executable file

#!/usr/bin/env bash
# Utilize in conjunction with espanso, call ;html5
cat <<EOM
<!DOCTYPE html>
<html lang="en">
<head>
<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">
<link rel="preload" href="css/style.css" as="style" onload='this.onload=null,this.rel="stylesheet"' />
<noscript><link rel="stylesheet" href="css/style.css" /></noscript>
</head>
<body>
<main>
<article>
<h1>My Heading</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
anim id est laborum.</p>
</article>
</main>
</body>
<script src="./index.js" default defer></script>
</html>
EOM