notes/scripts/html5
2023-06-20 01:30:00 -07:00

20 lines
No EOL
655 B
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">
</head>
<body>
</body>
<script src="./index.js" default></script>
</html>
EOM