Make pages pretty

Take a few minutes to make the pages prettier. This includes adding appropriate
markup, adding images, and strengthening the text.
This commit is contained in:
Andrew Tomaka 2014-02-18 01:32:01 -05:00
parent 25a41ca21e
commit 345516bf8b
5 changed files with 74 additions and 2 deletions

BIN
files/iceman/iceman.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 KiB

29
files/iceman/index.html Normal file
View file

@ -0,0 +1,29 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Iceman</title>
<style>
html {
background: black url(iceman.jpg) no-repeat;
background-size: 100%;
}
body {
text-align: center;
font-size: 5em;
color: white;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
</style>
</head>
<body>
You can be my wingman any time.
</body>
</html>

29
files/maverick/index.html Normal file
View file

@ -0,0 +1,29 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Maverick</title>
<style>
html {
background: black url(maverick.jpg) no-repeat;
background-size: 100%;
}
body {
text-align: center;
font-size: 5em;
color: white;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
</style>
</head>
<body>
Bullshit! You can be mine.
</body>
</html>

BIN
files/maverick/maverick.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 KiB

View file

@ -123,7 +123,14 @@ file { '/var/www/maverick.atomaka.com/index.html':
ensure => present,
owner => 'maverick',
group => 'maverick',
content => 'Bullshit! You can be mine.',
content => file('/tmp/puppet/files/maverick/index.html'),
}
file { '/var/www/maverick.atomaka.com/maverick.png':
ensure => present,
owner => 'maverick',
group => 'maverick',
content => file('/tmp/puppet/files/maverick/maverick.png'),
}
file { '/var/www/iceman.atomaka.com':
@ -138,7 +145,14 @@ file { '/var/www/iceman.atomaka.com/index.html':
ensure => present,
owner => 'iceman',
group => 'iceman',
content => 'You can be my wingman any time.',
content => file('/tmp/puppet/files/iceman/index.html'),
}
file { '/var/www/iceman.atomaka.com/iceman.png':
ensure => present,
owner => 'iceman',
group => 'iceman',
content => file('/tmp/puppet/files/iceman/iceman.png'),
}
file { '/var/www/tc362.atomaka.com/index.html':