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
|
||||
|
@ -59,4 +59,15 @@ tr:nth-child(even) {
|
||||
.container {
|
||||
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>
|
||||
|
||||
<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>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Status</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="//element.willy.club">Element</a></td>
|
||||
<td>Online</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="//git.willy.club">Gitea</a></td>
|
||||
<td>Online</td>
|
||||
<td>Unknown</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="<?=url('/matrix')?>">Matrix</a></td>
|
||||
<td>Online</td>
|
||||
<td>Unknown</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="mumble://mumble.willy.club">Mumble</a></td>
|
||||
@ -29,14 +25,12 @@
|
||||
|
||||
<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>
|
||||
|
||||
<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>
|
||||
|
||||
<h1>I don't know what more to put here</h1>
|
||||
|
@ -1,4 +1,4 @@
|
||||
</main>
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -21,7 +21,9 @@ function special_events(): string {
|
||||
<div class="container">
|
||||
|
||||
<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>
|
||||
|
||||
<main>
|
Loading…
Reference in New Issue
Block a user