Last active
January 14, 2025 09:58
-
-
Save typomedia/823298a8f1fa1b5ba6ac78ddeb492249 to your computer and use it in GitHub Desktop.
Lighttpd SSI Placeholder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="description" content="lighttpd is a secure, fast, compliant, and very flexible web server."> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Lighttpd - fly light</title> | |
<style> | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
body { | |
background-color: #f4f4f4; | |
font-family: Arial, sans-serif; | |
div.container { | |
border-top: 8px solid #336783; | |
display: flex; | |
flex-direction: column; | |
min-height: 100vh; | |
justify-content: center; | |
align-items: center; | |
main { | |
flex: 1; | |
img { | |
max-width: 100%; | |
height: auto; | |
margin: 50% auto; | |
} | |
} | |
footer { | |
padding: 20px; | |
color: #fff; | |
background-color: #333; | |
text-align: center; | |
} | |
} | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<main> | |
<img src="lighttpd.svg" alt="lighttp logo" title="<!--#echo var="SERVER_SOFTWARE" -->"> | |
</main> | |
<footer> | |
<!--#echo var="SERVER_NAME" --> | |
</footer> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment