-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (78 loc) · 2.01 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
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs@2/webcomponents-loader.min.js"></script>
<script type="module" src="https://cdn.jsdelivr.net/gh/zerodevx/zero-md@1/src/zero-md.min.js"></script>
<script>
window.ZeroMd = {
config: {
cssUrls: [
'/styles/marked.css',
'/styles/prism.css'
]
}
};
</script>
<style>
h1 {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 600;
line-height: 1.25;
text-align: center;
}
.page {
display: flex;
justify-content: space-between;
page-break-after: always;
}
.page div {
padding: 20px;
width: 100%;
}
</style>
</head>
<body>
<h1>Git Rules Sheet</h1>
<div class="page">
<div>
<div>
<zero-md src="./init.md"/>
</div>
<div>
<zero-md src="./commit.md"/>
</div>
<div>
<zero-md src="./branch.md"/>
</div>
</div>
<div>
<div>
<zero-md src="./merge.md"/>
</div>
<div>
<zero-md src="./rebase.md"/>
</div>
</div>
</div>
<div class="page">
<div>
<div>
<zero-md src="./fetch.md"/>
</div>
<div>
<zero-md src="./push.md"/>
</div>
<div>
<zero-md src="./upstream.md"/>
</div>
</div>
<div>
<div>
<zero-md src="./reflog.md"/>
</div>
<div>
<zero-md src="./reset.md"/>
</div>
</div>
</div>
</body>
</html>