-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
87 lines (77 loc) · 2.22 KB
/
template.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
<!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.0">
<link rel="stylesheet" href="./css/main.css">
<!-- <link rel="stylesheet" href="fedora.css"> -->
<title>Cheatsheet template model</title>
</head>
<body>
<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="topic">Topic</h4>
<div class="card">
<h5>Comando fictício 1</h5>
<article>
<pre>
<code>
<span>Texto fictício 1</span>
</code>
</pre>
</article>
</div>
<div class="card">
<h5>Comando fictício N</h5>
<article>
<pre>
<code>
<span>Outro Texto fictício N</span>
</code>
</pre>
</article>
</div>
</section>
<footer>
<nav>
<ul>
<li><a href="#" about="_blank">Facebook</a></li>
<li><a href="#" about="_blank">Twitter</a></li>
</ul>
</nav>
</footer>
</body>
</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"
}
]
}
]
}
-->