Readded templates after rename

This commit is contained in:
Gabriel Simmer 2018-03-04 17:07:17 -08:00
parent 392016837b
commit 42eaf2997a
2 changed files with 98 additions and 0 deletions

53
template/fork.html Normal file
View file

@ -0,0 +1,53 @@
<!DOCTYPE html>
<!-- Very simple webpage that scales decently -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>rep_SNAME - Under Construction</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body{
font-family: sans-serif;
padding: 0;
margin: 0;
background-color: #E9E9E9;
}
.container {
width: 40%;
margin: 0 auto;
}
header {
margin-top: -20px;
padding: 10px 0;
}
.content{
width: 40%;
position: fixed;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
font-weight: 400;
text-align: center;
box-shadow:2px 2px 5px #888;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1 id="sitename">rep_SNAME</h1>
</div>
</header>
<div class="content">
<h1>Under Construction</h1>
<p><span id="sitename">rep_SNAME</span> is being worked on by <span id="devname">rep_DEVNAME!</span>!</p> <!-- See README for keywords -->
</div>
</body>
</html>

45
template/original.html Normal file
View file

@ -0,0 +1,45 @@
<!DOCTYPE html>
<!-- Very simple webpage that scales decently -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>rep_SNAME</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body{
font-family: sans-serif;
position: fixed;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #E9E9E9;
}
.header{
font-weight: 700;
padding: 10px;
text-align: center;
box-shadow:2px 2px 5px #888;
}
.content{
font-weight: 400;
padding: 6%;
text-align: center;
box-shadow:2px 2px 5px #888;
}
</style>
</head>
<body>
<div class="header">
<h1 id="sitename">rep_SNAME</h1>
</div>
<br />
<div class="content" id="content">
<p><span id="url">rep_URL</span> is being worked on by <span id="devname">rep_DEVNAME!</span></p> <!-- See README for keywords -->
</div>
</body>
</html>