-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (124 loc) · 6.31 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Base de conhecimento</title>
<meta name="author" content="Gregory Henry" />
<meta name="description" content="Base de conhecimento" />
<meta charset="utf-8" />
<meta /index.html name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900" rel="stylesheet" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" />
</head>
<body>
<div class="wrapper d-flex align-items-stretch">
<nav id="sidebar">
<div class="custom-menu">
<button type="button" id="sidebarCollapse" class="btn btn-primary">
<i class="fa fa-bars"></i>
<span class="sr-only">Toggle Menu</span>
</button>
</div>
<!– Menu –>
<div class="p-4 pt-5">
<h1>
<!– Logo Texto –>
<a href="pages/home.html" class="logo" target="iframe">Base de conhecimento</a>
</h1>
<!– Menu –>
<ul class="list-unstyled components mb-5">
<li class="active">
<a href="#development" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle menu-item">Desenvolvimento </a>
<ul class="collapse list-unstyled development-submenu" id="development">
<li>
<a class="textSize menu-link" href="pages/desenvolvimento/logicaDeProgramacao.html" target="iframe" onclick="return hideMenu()">Lógica de Programação</a>
</li>
</ul>
</li>
<li>
<a href="#bddata" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle menu-item">Banco de Dados</a>
<ul class="collapse list-unstyled bddata-submenu" id="bddata">
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">MongoBD</a>
</li>
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">MySql</a>
</li>
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">Oracle</a>
</li>
</ul>
</li>
<li>
<a href="#toolsSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle menu-item">Ferramentas</a>
<ul class="collapse list-unstyled toolsSubmenu-submenu" id="toolsSubmenu">
<li>
<a id="insomnia-link" class="textSize" href="pages/ferramentas/insomnia.html" target="iframe" onclick="return hideMenu()">Insomnia</a>
</li>
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">Postman</a>
</li>
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">SoapUI</a>
</li>
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">Sql Developer</a>
</li>
</ul>
</li>
<li>
<a href="#repository" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle menu-item">Repositório</a>
<ul class="collapse list-unstyled repository-submenu" id="repository">
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">Git</a>
</li>
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">GitHub</a>
</li>
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">GtLab</a>
</li>
</ul>
</li>
<li>
<a href="#tAutomation" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle menu-item">Teste Automatizado</a>
<ul class="collapse list-unstyled tAutomation-submenu" id="tAutomation">
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">RPA</a>
</li>
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">Selenium</a>
</li>
</ul>
</li>
<li>
<a href="#performance" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle menu-item">Teste de Performance</a>
<ul class="collapse list-unstyled performance-submenu" id="performance">
<li>
<a class="textSize menu-link" href="pages/home.html" target="iframe" onclick="return hideMenu()">Jmeter</a>
</li>
</ul>
</li>
</ul>
<div class="footer">
<p> <a id="contactMail" class="textSize" href="pages/contato/contato.html" target="iframe" onclick="return hideMenu()">📧 Entre em Contato</a></p>
<p> Developed by <strong class="footer">Gregy</strong><br /> </p>
<p>
<a class="fontAwesomeIcon" href="https://github.com/GregyHenry" target="_blank"> <i class="fa-brands fa-github"></i></a>
<a class="fontAwesomeIcon linkedin" href="https://www.linkedin.com/in/gregory-henry-mguimaraes/" target="_blank"><i class="fab fa-linkedin"></i></a>
</p>
</div>
</div>
</nav>
<div id="content" class="p-4 p-md-5 pt-5">
<iframe id="openPages" name="iframe" src="pages/home.html"></iframe>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/popper.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script src="js/enableCollapsibleMenu.js"></script>
<script src="js/hideMenu.js"></script>
</body>
</html>