-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
108 lines (86 loc) · 3.33 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gridea Blog</title>
<link rel="icon" href="https://static.gridea.dev/gridea/IjklZQ0H0.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=G-NFCRR8Q57W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
</script> -->
<script async src='https://www.google-analytics.com/analytics.js'></script>
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-182385326-1');
ga('set', 'dimension1', 'site/yRVA_o9Jw');
ga('send', 'pageview');
// gtag('set', {
// 'custom_map': {
// 'dimension1': 'siteId',
// }
// })
// gtag('config', 'G-NFCRR8Q57W', {
// 'siteId': 'site/yRVA_o9Jw',
// });
</script>
<meta name="description" content="Love Blog, Love Gridea">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@gridea/[email protected]/css/main.css">
</head>
<body class="bg-gray-100">
<div id="page">
<div class="mb-16 sticky top-0 z-20" :class="{
'bg-gray-100': !overTop
}">
<header class="py-4 flex items-baseline justify-between max-w-2xl mx-auto px-2">
<h1 class="text-xl text-center font-medium px-4 md:px-0">
<a href="/">Gridea Blog</a>
</h1>
<div class="flex justify-center">
<a
href="/https://gridea.dev"
class="mx-2 text-base border-b border-transparent hover:border-black"
>Gridea</a>
</div>
</header>
</div>
<div class="border-b border-gray-200">
<div class="max-w-2xl mx-auto px-2">
<div class="my-24">
<h1 class="text-xl py-4">Love Blog, Love Gridea</h1>
</div>
</div>
</div>
<div id="sticky-bar" class="w-full sticky top-0 z-10 bg-white" style="height: 64px;"></div>
<div class="w-full relative bg-white py-16">
<div class="max-w-2xl mx-auto">
<div>
<article class="mb-8 bg-white px-2 py-8 rounded-md">
<a href="/github-pages-with-gridea/" class="post-item">
<h2 class="text-2xl post-title">如何使用 GitHub Pages + Gridea(web) 托管网站</h2>
<h6 class="text-gray-600 text-xl"></h6>
<div class="mt-4 text-gray-400">本文是关于使用 GitHub Pages + Gridea (Web) 部署网站的教程。全程无需编程或写代码,所以无论你是从事什么行业都可以跟随此教程部署一个自己的网站。
第一步:注册 GitHub 账号
注册一个 Github 账号,用于...</div>
<div class="mt-4 read-more">阅读更多</div>
</a>
</article>
</div>
<div class="px-2 flex justify-between">
<div></div>
<div></div>
</div>
</div>
</div>
<div class="py-8 text-gray-300 text-center border-t border-gray-200">
Powered by Gridea
</div>
</div>
<script src="//cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="//cdn.jsdelivr.net/npm/@gridea/[email protected]/js/main.js"></script>
</body>
</html>