This commit is contained in:
Nicholas Orlowsky 2023-10-17 13:16:31 -04:00
parent 38359bd957
commit d6eb46d310
No known key found for this signature in database
GPG key ID: BE7DF0188A405E2B
20 changed files with 178 additions and 1020295 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

9
src/test_www/index.html Normal file
View file

@ -0,0 +1,9 @@
<head>
<title>Anthracite</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<center>
<h1>Anthracite is Running!</h1>
<p>If you are seeing this page, then Anthracite is configured correctly!</p>
<p>Add files to the "www" directory to begin serving your website.</p>
</center>

18
src/test_www/test.css Normal file
View file

@ -0,0 +1,18 @@
.cool-style {
background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.content {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.content img {
max-width: 100%;
height: auto;
margin: 10px;
}

25
src/test_www/test.html Normal file
View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Anthracite</title>
<link rel="icon" type="image/x-icon" href="/images/favicon_anim.ico">
<link rel="stylesheet" href="test.css">
</head>
<body>
<center>
<h1 class="cool-style">Test Page!</h1>
<h2>Dogs</h2>
<div class="content">
<img src="/images/tini.png" alt="A border collie" />
<img src="/images/lola.jpeg" alt="A border collie" />
<img src="/images/emma.bmp" alt="A corgi" />
</div>
<h2>Trains</h2>
<div>
<video controls>
<source src="videos/train_vid.mp4" />
</video>
</div>
</center>
</body>
</html>

Binary file not shown.