-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
68 lines (64 loc) · 3.09 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="baidu-site-verification" content="codeva-21J8CWouZp" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>开源面对面</title>
<meta
name="description"
content="《开源面对面》是个系列访谈节目,旨在通过采访不同行业、岗位的开源参与者的亲身经历、心得体会,让更多的从业人员感受到参与开源是一种积极的趋势与良好的职业发展方向,认识到任何人都可以参与开源,并在开源的世界里体现自己的价值。"
/>
<meta
name="keywords"
content="Open Source,开源布道,开源文化,开源访谈,开源播客"
/>
<meta property="og:type" content="article" />
<meta property="og:title" content="开源面对面" />
<meta property="og:site_name" content="开源面对面" />
<meta
property="og:description"
content="《开源面对面》是个系列访谈节目,旨在通过采访不同行业、岗位的开源参与者的亲身经历、心得体会,让更多的从业人员感受到参与开源是一种积极的趋势与良好的职业发展方向,认识到任何人都可以参与开源,并在开源的世界里体现自己的价值。"
/>
<meta property="og:url" content="https://osf2f.net/" />
<meta property="og:locale" content="zh_CN" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@osf2f" />
<meta name="twitter:title" content="开源面对面" />
<meta name="twitter:creator" content="@osf2f" />
<meta
name="twitter:description"
content="《开源面对面》是个系列访谈节目,旨在通过采访不同行业、岗位的开源参与者的亲身经历、心得体会,让更多的从业人员感受到参与开源是一种积极的趋势与良好的职业发展方向,认识到任何人都可以参与开源,并在开源的世界里体现自己的价值。"
/>
<meta name="twitter:domain" content="osf2f.net" />
<link rel="icon" href="/static/logo.ico" type="image/x-icon" />
<meta name="theme-color" content="#b7dca7" />
<script>
;(function () {
const prefersDark =
window.matchMedia &&
window.matchMedia('(prefers-color-scheme: dark)').matches
const setting = localStorage.getItem('vueuse-color-scheme') || 'auto'
if (setting === 'dark' || (prefersDark && setting !== 'light'))
document.documentElement.classList.toggle('dark', true)
})()
</script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-PFQR3NV8ME"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-PFQR3NV8ME')
</script>
</head>
<body transition-colors antialiased>
<div id="app" class="flex flex-col h-100vh"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>