-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
76 lines (66 loc) · 2.72 KB
/
about.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
title: 白腾飞-产品经理
---
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }}</title>
<link rel="icon" type="image/png" href="/assets/images/favicon.png" />
<link rel="stylesheet" href="/assets/css/homebase.css" />
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9HK8F4W2ZH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9HK8F4W2ZH');
</script>
<body>
<header>
<div class="logo-container">
<img src="/assets/images/logo.jpg" class="logo" alt="logo">
</div>
<nav>
<ul>
<li><a href="/">首页</a></li>
<li><a href="/tech">科技</a></li>
<li><a href="/notes">随笔</a></li>
<li style="font-weight: bold; color: #333;"><a href="/about" class="item-active">关于</a></li>
</ul>
</nav>
</header>
<main>
<article>
<h2>白腾飞</h1>
<p>
关注科技和有趣的产品,作为打工人参与过一些智能硬件产品如智能手表/智能音箱/餐饮机器人等产品的研发,希望能有越来越多属于自己的作品。
</p>
</article>
<article>
<h2>个人作品</h2>
<h3>逃脱智能房子</h3>
<p>
一个密室逃脱类的小游戏。谜题使用了一些智能家居的元素。
使用微信扫一扫试玩:
</p>
<img src="assets/images/escaperoom.jpg" alt="escaperoom_game" style="width: 100px;height: 100px; display: block; margin: auto;">
<p>另外我把代码开源了,内容包含密室逃脱游戏基本上所有的功能模块,大家可以参考设计自己的密室逃脱小游戏 -> <a href="https://github.com/baitengfei/EscapeRoomGame" style="font-size:medium; font-weight: lighter; font-style: italic; color: #333;">GitHub 项目链接</a></p>
</article>
<article>
<h2>联系我</h2>
<p>
欢迎一起交流更多关于未来科技和生活的话题,「陪伴机器人」我最近思考比较多,如有兴趣欢迎一起探讨。
</p>
<p style="color: #d3d3d3; font-weight: lighter;">微信ID:tengfeibai(请备注:来自博客)</p>
</article>
</main>
<footer>
<p>
Copyright © baitengfei.com
</p>
</footer>
</body>
</html>