Will this work?
This commit is contained in:
parent
6d44c0a986
commit
0c8910b631
4
Dockerfile
Normal file
4
Dockerfile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
FROM php:latest
|
||||||
|
COPY . /usr/src/myapp
|
||||||
|
WORKDIR /usr/src/myapp/public/
|
||||||
|
CMD [ "php", "./index.php" ]
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Pretty cool snow that was TOTALLY not stolen from soneone else ;-)
|
* Cool snow that was TOTALLY NOT stolen from someone else :-)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Amount of Snowflakes
|
// Amount of Snowflakes
|
||||||
|
@ -59,4 +59,15 @@ tr:nth-child(even) {
|
|||||||
.container {
|
.container {
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, code {
|
||||||
|
font-family: "DejaVu Sans Mono", Consolas, monospace;
|
||||||
|
background: #431718;
|
||||||
|
color: bisque;
|
||||||
|
padding: .5rem;
|
||||||
|
max-width: 100%;
|
||||||
|
display: block;
|
||||||
|
overflow-x: auto;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
@ -2,24 +2,20 @@
|
|||||||
|
|
||||||
<h1>Welcome to the willy club</h1>
|
<h1>Welcome to the willy club</h1>
|
||||||
|
|
||||||
<p>Theres more than just willies! This site hosts some of my personal projects and services for me and acquaintances.</p>
|
<p>Theres more than just willies! This site hosts some services for me and friends.</p>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td><a href="//element.willy.club">Element</a></td>
|
|
||||||
<td>Online</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="//git.willy.club">Gitea</a></td>
|
<td><a href="//git.willy.club">Gitea</a></td>
|
||||||
<td>Online</td>
|
<td>Unknown</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="<?=url('/matrix')?>">Matrix</a></td>
|
<td><a href="<?=url('/matrix')?>">Matrix</a></td>
|
||||||
<td>Online</td>
|
<td>Unknown</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="mumble://mumble.willy.club">Mumble</a></td>
|
<td><a href="mumble://mumble.willy.club">Mumble</a></td>
|
||||||
@ -29,14 +25,12 @@
|
|||||||
|
|
||||||
<h1>Contact</h1>
|
<h1>Contact</h1>
|
||||||
|
|
||||||
<p>You can find me on Matrix at <a href="#">@william:willy.club</a></p>
|
<p>Send me a nice and positive message at <a href="#">@william:willy.club</a></p>
|
||||||
|
|
||||||
<h1>Webring</h1>
|
<h1>Webring</h1>
|
||||||
|
|
||||||
<p>Check out any of these other websites</p>
|
<p>Check out any of these other websites</p>
|
||||||
|
|
||||||
<p>... nothingness</p>
|
|
||||||
|
|
||||||
<p>Well maybe there will be a webring here in the future.</p>
|
<p>Well maybe there will be a webring here in the future.</p>
|
||||||
|
|
||||||
<h1>I don't know what more to put here</h1>
|
<h1>I don't know what more to put here</h1>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -21,7 +21,9 @@ function special_events(): string {
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<img src="<?=url('/static/img/banner.png')?>" width="600" height="150">
|
<a href="<?=url('/')?>">
|
||||||
|
<img src="<?=url('/static/img/banner.png')?>" width="600" height="150" alt="Click here to go to the homepage.">
|
||||||
|
</a>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main>
|
<main>
|
Loading…
Reference in New Issue
Block a user