control-repo/site/profile/templates/index.html.epp
Abir Majumdar 1e9f6596a4
Merge pull request #3 from maju6406/website-update2
Updating website content
2018-08-21 08:27:53 -07:00

39 lines
1.1 KiB
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>Cummins Website</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
</head>
<body>
<div class="container">
<img src="img/LEGO.jpg" alt="Puppet" />
<div class="blurb">
<% if $kernel == 'windows' { -%>
<img src="img/windows.png" height="128" width="128" />
<% } elsif $kernel == 'Linux' { -%>
<img src="img/tux.png" height="128" width="128" />
<% } elsif $kernel == 'Darwin' { -%>
<img src="img/apple.png" height="128" width="128" />
<% } -%>
<h1>System Info </h1>
<p>fqdn/certname:
<%= $trusted[certname] %>
</p>
<p>ip address:
<%= $networking[ip] %>
</p>
<p>total system memory:
<%= $memory[system][total] %>
</p>
<p>vm uuid:
<%= $trusted[extensions][pp_uuid] %>
</p>
</div>
</div>
</body>
</html>