Index updates

This commit is contained in:
Julien Negrotto 2025-04-16 21:39:32 -05:00
parent 55a3f0c320
commit a1f76e9046
3 changed files with 54 additions and 2 deletions

View File

@ -1,6 +1,7 @@
export default function(eleventyConfig) { export default function(eleventyConfig) {
// Copy textfiles to the output folder // Copy text/ansi files to the output folder
eleventyConfig.addPassthroughCopy("src/**/*.txt"); eleventyConfig.addPassthroughCopy("src/**/*.txt");
eleventyConfig.addPassthroughCopy("src/**/*.ans");
return { return {
dir: { dir: {

View File

@ -4,9 +4,60 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>crawfi.sh</title> <title>crawfi.sh</title>
<style>
html, body {
margin: 0;
padding: 0;
}
body {
background-color: #181818;
color: #ddd;
font-family: 'Courier New', Courier, monospace;
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.site-title {
margin-bottom: 2rem;
}
a {
color: #eee;
font-weight: bold;
text-decoration: none;
}
.links:before {
content: "[";
}
.links:after {
content: "]";
}
</style>
</head> </head>
<body> <body>
... <main>
<pre class="site-title">
__ _ _
___ _ __ __ ___ __/ _(_) ___| |__
/ __| '__/ _` \ \ /\ / / |_| | / __| '_ \
| (__| | | (_| |\ V V /| _| |_\__ \ | | |
\___|_| \__,_| \_/\_/ |_| |_(_)___/_| |_|
</pre>
<div class="links">
<a href="/files/">files</a>
</div>
</main>
</body> </body>
</html> </html>