tc362/files/tc362/index.html
Andrew Tomaka 29748842a7 Copy files recursively
By declaring the directory copy with recurse set to true, there is no longer a
need to manage every single individual file in the directory.  This might
(almost certainly?) have consequences when files are removed from the
repository, but that's not really a concern in this specific scenario.
2014-02-19 11:14:01 -05:00

61 lines
1.3 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Hello World</title>
<style>
body {
margin: auto;
padding: 5px;
background: black;
color: white;
font-size: 10pt;
font-family: "Lucida Console", Monaco, monospace
}
.time {
font-weight: bold;
}
.username {
color: green;
}
.server {
color: yellow;
}
.pwd {
color: dodgerblue;
}
.bad-prompt {
color: red;
}
.good-prompt {
color: green;
}
.cursor {
width: 8px;
height: 15px;
display: inline-block;
background: white;
}
</style>
</style>
</head>
<body>
<div>
[<span class="time">16:01:42</span>]
<span class="username">atomaka</span>@<span class="server">tc362.atomaka.com</span>
<span class="pwd">~</span><br/>
|<span class="good-prompt">-&gt;</span> Hello World<br/>
zsh: command not found: Hello
</div>
<div>
[<span class="time">16:02:10</span>]
<span class="username">atomaka</span>@<span class="server">tc362.atomaka.com</span>
<span class="pwd">~</span><br/>
|<span class="bad-prompt">-&gt;</span> <span class="cursor">&nbsp;</span>
</div>
</body>
</html>