-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 2.17 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Conecta.pet</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Conecta.pet é um projeto desenvolvido pelo pet informática do centro de informática da UFPE no campus Recife, neste projeto disponibilizamos um curso e certificação em python para pessoas interessadas.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <!-- Adiciona Font Awesome -->
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: '',
repo: '',
loadSidebar: true,
subMaxLevel: 'auto', // Define automaticamente a profundidade dos cabeçalhos no sidebar
search: {
maxAge: 0, // Limpa o cache de busca
paths: 'auto', // Busca em todos os arquivos
placeholder: 'Escreva para buscar',
noData: 'Sem resultados encontrados!',
depth: 2,
hideOtherSidebarContent: true,
},
homepage: 'introducao.md',
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- Plugin de busca -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<!-- Emojis -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
<!-- Script para a barra de busca -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const observer = new MutationObserver(function() {
const searchContainer = document.querySelector('.input-wrap');
if (searchContainer && !searchContainer.querySelector('.fa-search')) {
const searchIcon = document.createElement('i');
searchIcon.className = 'fas fa-search';
searchContainer.appendChild(searchIcon);
}
});
observer.observe(document.body, { childList: true, subtree: true });
});
</script>
</body>
</html>