-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.53 KB
/
Copy pathindex.html
File metadata and controls
47 lines (47 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Software Engineer Guide</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="shortcut icon" href="/_media/favicon.ico">
<meta name="description" content="Tem como objetivo disseminar importantes conceitos sobre engenharia de software, focando em apoiar desenvolvedores a se tornarem profissionais mais capacitados e evoluírem em sua carreira.
">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<style>
:root {
--theme-color : #029ee9;
--sidebar-width: 22rem;
--sidebar-nav-link-margin: -0.5rem -1.5rem 0 0;
}
.sidebar-nav ul p {
margin: 1rem 0 0.5rem;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Software Engineer Guide',
nameLink: '#/homepage',
repo: 'https://github.com/lucasmattosdev/software-engineer-guide',
coverpage: true,
auto2top : true,
autoHeader: true,
loadSidebar: true,
subMaxLevel: 3,
homepage: 'homepage.md',
search: {
placeholder: 'Buscar',
noData: 'Sem resultados',
},
logo: '/_media/logo-light.webp'
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
</body>
</html>