web_template
commit
31308cd208
@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
folder=${1:-template}
|
||||||
|
|
||||||
|
mkdir $folder
|
||||||
|
chmod 777 $folder
|
||||||
|
|
||||||
|
echo "<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>This is a sample page</title>
|
||||||
|
<!--
|
||||||
|
<meta name="Keywords" content=" ">
|
||||||
|
<meta name="Description" content=" ">
|
||||||
|
<link rel="icon" href=" " type="image/x-icon">
|
||||||
|
-->
|
||||||
|
<link rel="stylesheet" type="text/css" href="./style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
</body>
|
||||||
|
</html>" > $folder/index.html
|
||||||
|
|
||||||
|
touch $folder/style.css
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue