forked from ccuffs/guia-tcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (83 loc) · 3.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guia de TCC - Ciência da Computação - UFFS</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Guia para escrita de Trabalhos de Conclusão de Curso (TCC) do curso de Ciência da Computação da Universidade Federal da Fronteira Sul.">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/fontawesome.css" />
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/brands.css" />
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/regular.css" />
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/solid.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-dark-mode@latest/dist/style.min.css" />
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Guia TCC',
repo: 'ccuffs/guia-tcc',
coverpage: false,
loadSidebar: true,
loadNavbar: true,
subMaxLevel: 2,
// complete configuration parameters
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: 'auto', // or 'auto'
placeholder: 'Digite para pesquisar',
// Localization
placeholder: {
'/': 'Digite para pesquisar'
},
noData: 'Nenhum resultado!',
// Localization
noData: {
'/': 'Nenhum resultado'
},
// Headline depth, 1 - 6
depth: 3,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
// To avoid search index collision
// between multiple websites under the same domain
namespace: 'website-1',
},
tabs: {
persist : true,
sync : true,
theme : 'material',
tabComments: true,
tabHeadings: true
},
pagination: {
previousText: 'Anterior',
nextText: 'Próximo',
crossChapter: true,
crossChapterText: true,
},
darkMode: {
dark: {
background: '#222',
toggleBtnBg: '#34495e',
textColor: '#b4b4b4'
},
light: {
background: 'white',
toggleBtnBg: '#42b983',
textColor: 'var(--text-color)' // #34495e
}
}
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//unpkg.com/docsify-fontawesome/dist/docsify-fontawesome.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-dark-mode@latest/dist/index.min.js"></script>
</body>
</html>