control-repo/site/profile/templates/index.html.epp
2018-11-16 17:44:05 -05:00

30 lines
692 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
</head>
<body>
<p>Hello Pittsburgh!</p>
<div class="container">
<img src="img/LEGO.jpg" alt="Puppet" />
<div class="blurb">
<h1>System Info </h1>
<p>fqdn/certname:
<%= $trusted[certname] %>
</p>
<p>ip address:
<%= $networking[ip] %>
</p>
<p>total system memory:
<%= $memory[system][total] %>
</p>
</div>
</div>
</body>
</html>