feat: first draft
This commit is contained in:
commit
1847385b53
2
Dockerfile
Normal file
2
Dockerfile
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
FROM docker.io/nginx:latest
|
||||||
|
COPY html/ /usr/share/nginx/html/
|
6
compose.yaml
Normal file
6
compose.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build: .
|
||||||
|
ports:
|
||||||
|
- "8000:80"
|
38
html/index.html
Normal file
38
html/index.html
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
table, th, td {
|
||||||
|
border: 2px solid black;
|
||||||
|
border-collapse: collapse;
|
||||||
|
padding: 1ex;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>⚠️ Site en construction! ⚠️</h1>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Plateforme</th>
|
||||||
|
<th>Contact</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Matrix (Element)</td>
|
||||||
|
<td><a href="https://app.element.io/#/user/@ange:gmoker.com">@ange:gmoker.com</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Discord</td>
|
||||||
|
<td>@elrilio</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Tel</td>
|
||||||
|
<td><a href="tel:+33582951623">+33 5 82 95 16 23</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Email</td>
|
||||||
|
<td><a href="mailto:ange@yw5n.com">ange@yw5n.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user