Andrew Tomaka
29748842a7
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.
61 lines
1.3 KiB
HTML
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">-></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">-></span> <span class="cursor"> </span>
|
|
</div>
|
|
</body>
|
|
</html>
|