-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (48 loc) · 959 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<title>Jérémy Clerc</title>
<style>
body {
background-color: black;
color: white;
font-family: monospace;
}
#name {
width: fit-content;
line-height: 200px;
margin: auto;
vertical-align: middle;
text-align: center;
font-size: xx-large;
}
.code {
width: fit-content;
margin: auto;
font-size: large;
}
</style>
</head>
<body>
<div id="name">Jérémy Clerc</div>
<div class="code">
<pre>
==> mail.tf <==
provider "postfix" {
domain = "clerc.io"
}
resource "postfix_user" "user_for_jeremy" {
username = "jeremy"
}
==> deploy.yaml <==
---
- hosts: jeremy
tasks:
- name: install human package
apt:
name: human
</pre>
</div>
</body>
</html>