-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
97 lines (84 loc) · 3.07 KB
/
Copy pathtemplate.html
File metadata and controls
97 lines (84 loc) · 3.07 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
<link rel="stylesheet" href="./css/main.css">
<!-- <link rel="stylesheet" href="fedora.css"> -->
<title>Cheatsheet template model</title>
</head>
<body>
<div class="border: 1px">
<header><a href="#" about="_blank">Link para este cheatsheet</a></header>
<section>
<h1 class="titulo">Nome fictício do Cheatsheet</h1>
<h2 class="cheatsheet">Título fictício do Cheatsheet</h2>
</section>
<section class="cheat">
<h4 class="card-title topic">Topic</h4>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">Título fictício do comando</h5>
<p class="card-text">Descrição fictícia do comando</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">Título fictício do comando</h5>
<p class="card-text">Descrição fictícia do comando</p>
</div>
</div>
</div>
</div>
</section>
<footer>
<nav>
<ul>
<li><a href="#" about="_blank">Facebook</a></li>
<li><a href="#" about="_blank">Twitter</a></li>
</ul>
</nav>
</footer>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.bundle.min.js"
integrity="sha384-j1CDi7MgGQ12Z7Qab0qlWQ/Qqz24Gc6BM0thvEMVjHnfYGF0rmFCozFSxQBxwHKO"
crossorigin="anonymous"></script>
<script src="./js/main.js"></script>
<script src="./js/template.js"></script>
</html>
<!-- amarelo #cebd00
verde #238b76
vermelho #c32047
preto #19171a
background azul #2f72a2
background cards #b3cdca -->
<!-- {
"titulo": "Axeet",
"palette": "default",
"autor": "mich",
"cheatsheet": "RedHat",
"topic": [
{
"topicName": "Manipulando Openshift",
"cheat": [
{
"codigoCheat": "oc get ns",
"descricaoCheat": "pegando o name space openshift"
},
{
"codigoCheat": "oc select project [nome do projeto]",
"descricaoCheat" : "entra dentro de umprojeto no openshift"
}
]
}
]
}
-->