Files
docker-test-image/static-html-directory/index.html
Gregory Hendrickson c957d02d80 s
2023-06-09 16:57:00 -07:00

47 lines
1006 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Latest Commit</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
.commit-details {
background-color: #f5f5f5;
padding: 20px;
border-radius: 5px;
border: 1px solid #ddd;
}
.commit-details h2 {
font-size: 18px;
margin-bottom: 10px;
}
.commit-details p {
margin: 5px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Latest Commit</h1>
<div class="commit-details">
<h2>Repository: ghndrx/docker-test-image</h2>
<p><strong>Commit:</strong> abcdef1234567890</p>
<p><strong>Author:</strong> John Doe</p>
<p><strong>Date:</strong> June 1, 2023</p>
<p><strong>Message:</strong> Added new feature</p>
<p><strong>Files Changed:</strong> 3</p>
</div>
</div>
</body>
</html>