dc99e2349e
Deploy Resume / deploy (push) Successful in 5s
- 重构目录结构:css/、resume/、other/ 分离公共资源与简历页面 - 主简历迁移至 resume/index.html,路径指向 /resume - 新增导航页 /other,基础架构工程师和网络安全工程师两份简历 - 全局样式 css/resume.css 由所有简历共享 - 新增 Dockerfile 和 nginx.conf,基于 nginx:alpine 容器化部署 - 新增 .gitea/workflows/deploy.yml,推送到 main 自动构建部署 - 更新 README.md 记录项目结构和添加新简历流程 - 删除无用脚本 convert.js、convert.py、download_font.js
115 lines
3.3 KiB
HTML
115 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>何朝晖 - 其他简历</title>
|
|
<link rel="stylesheet" href="../css/resume.css">
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background: #f5f7fa;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
padding: 40px;
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
|
|
max-width: 500px;
|
|
width: 90%;
|
|
}
|
|
h1 {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: #222;
|
|
margin-bottom: 8px;
|
|
}
|
|
.subtitle {
|
|
font-size: 14px;
|
|
color: #888;
|
|
margin-bottom: 32px;
|
|
}
|
|
.resume-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.resume-list li {
|
|
margin-bottom: 16px;
|
|
}
|
|
.resume-list a {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 20px;
|
|
background: #f8fafc;
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
color: #222;
|
|
transition: all 0.2s ease;
|
|
}
|
|
.resume-list a:hover {
|
|
background: #EEF3FF;
|
|
border-color: #4478DF;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(68, 120, 223, 0.15);
|
|
}
|
|
.resume-title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
.resume-desc {
|
|
font-size: 12px;
|
|
color: #888;
|
|
margin-top: 4px;
|
|
}
|
|
.arrow {
|
|
color: #4478DF;
|
|
font-size: 20px;
|
|
}
|
|
.back-link {
|
|
display: inline-block;
|
|
margin-top: 24px;
|
|
color: #4478DF;
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
}
|
|
.back-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>何朝晖</h1>
|
|
<p class="subtitle">其他岗位简历</p>
|
|
<ul class="resume-list">
|
|
<li>
|
|
<a href="/other/infra-engineer/">
|
|
<div>
|
|
<div class="resume-title">基础架构工程师</div>
|
|
<div class="resume-desc">分布式系统、云原生、基础设施开发</div>
|
|
</div>
|
|
<span class="arrow">→</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="/other/security-engineer/">
|
|
<div>
|
|
<div class="resume-title">网络安全工程师</div>
|
|
<div class="resume-desc">安全攻防、漏洞分析、供应链安全</div>
|
|
</div>
|
|
<span class="arrow">→</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<a href="/resume/" class="back-link">← 返回主简历</a>
|
|
</div>
|
|
</body>
|
|
</html>
|