feat: resume and aboutme pages
All checks were successful
/ deploy (push) Successful in 12s

This commit is contained in:
ange 2024-09-10 23:12:26 +07:00
parent ea5de0a2c4
commit 16c6f27a93
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
5 changed files with 85 additions and 2 deletions

View File

@ -1,2 +1,3 @@
FROM docker.io/nginx:latest
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY static/ /usr/share/nginx/html/

10
nginx.conf Normal file
View File

@ -0,0 +1,10 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}

36
static/about.html Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ange DUHAYON</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="header">
<a id="headerLink" href="/">Ange DUHAYON</a>
<span id="headerSubtitle">DevOps</span>
</div>
<div id="menu">
<a href="/"><b>contact</b></a>
<a href="/resume.html">resume</a>
<a href="/about.html">about me</a>
<span class="right">
<a href="//git.gmoker.com/yw5n/">source</a>
</span>
</div>
<hr class="hidden"/>
<div id="content">
<div id="nav">
<ul>
<li><a href="#matrix">Matrix</a></li>
<li><a href="#discord">Discord</a></li>
<li><a href="#phone">Phone (France)</a></li>
<li><a href="#email">Email</a></li>
<li><a href="#wa">WhatsApp</a></li>
</ul>
</div>
<div id="main">
TODO
</div>
</body>
</html>

View File

@ -12,8 +12,8 @@
</div>
<div id="menu">
<a href="/"><b>contact</b></a>
<a href="/resume/">resume</a>
<a href="/about/">about me</a>
<a href="/resume.html">resume</a>
<a href="/about.html">about me</a>
<span class="right">
<a href="//git.gmoker.com/yw5n/">source</a>
</span>

36
static/resume.html Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ange DUHAYON</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="header">
<a id="headerLink" href="/">Ange DUHAYON</a>
<span id="headerSubtitle">DevOps</span>
</div>
<div id="menu">
<a href="/"><b>contact</b></a>
<a href="/resume.html">resume</a>
<a href="/about.html">about me</a>
<span class="right">
<a href="//git.gmoker.com/yw5n/">source</a>
</span>
</div>
<hr class="hidden"/>
<div id="content">
<div id="nav">
<ul>
<li><a href="#matrix">Matrix</a></li>
<li><a href="#discord">Discord</a></li>
<li><a href="#phone">Phone (France)</a></li>
<li><a href="#email">Email</a></li>
<li><a href="#wa">WhatsApp</a></li>
</ul>
</div>
<div id="main">
TODO
</div>
</body>
</html>