add main script for generating sites
add html parts, output and assets
This commit is contained in:
parent
eda36e1b38
commit
86a74d1020
14 changed files with 423 additions and 0 deletions
2
html-parts/footer-part.html
Normal file
2
html-parts/footer-part.html
Normal file
|
@ -0,0 +1,2 @@
|
|||
</body>
|
||||
</html>
|
12
html-parts/header-part.html
Normal file
12
html-parts/header-part.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE HTML>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>stevengibone.com</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||
</head>
|
||||
|
||||
<body>
|
32
html-parts/style.css
Normal file
32
html-parts/style.css
Normal file
|
@ -0,0 +1,32 @@
|
|||
body {
|
||||
max-width: 750px;
|
||||
margin: auto;
|
||||
background: black;
|
||||
color: lime;
|
||||
border: solid 2px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: orange;
|
||||
}
|
||||
a:visited {
|
||||
color: chocolate;
|
||||
}
|
||||
|
||||
h1,h2,h3 {
|
||||
border-bottom: dashed 1px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 1em 0em 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
border: solid 2px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: initial;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue