-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
86 lines (80 loc) · 3.06 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<meta
name="description"
content="Um Guia básico sobre a LGPD (Lei Geral de Proteção de Dados). Lei 13.709/2018 que entrou em vigor no Brasil dia 18/09/2020."
/>
<meta name="author" content="@niagalves" />
<meta name="robots" content="index, follow" />
<meta property="og:title" content="Guia básico sobre a LGPD" />
<meta
property="og:description"
content="Um Guia básico sobre a LGPD (Lei Geral de Proteção de Dados). Lei 13.709/2018 que entrou em vigor no Brasil dia 18/09/2020."
/>
<meta property="og:url" content="/" />
<meta property="og:locale" content="pt_BR" />
<meta property="og:site_name" content="Guia básico sobre a LGPD" />
<meta property="og:type" content="website" />
<meta property="og:image" content="/public/img/metatag.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="791" />
<meta property="og:image:height" content="473" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@niagalves" />
<meta name="twitter:title" content="Guia básico sobre a LGPD" />
<meta name="twitter:image" content="/public/img/metatag.png" />
<link
rel="stylesheet"
data-style-group="themeable"
media="(prefers-color-scheme: dark)"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css"
/>
<link
rel="stylesheet"
data-style-group="themeable"
media="(prefers-color-scheme: light)"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"
/>
<link rel="stylesheet" href="/public/css/styles.css" />
<link rel="icon" type="image/ico" href="/public/img/favicon.ico" />
<title>Guia básico sobre a LGPD</title>
</head>
<body>
<main id="app"></main>
<script>
window.$docsify = {
name: '<span title="Guia básico LGPD">Guia<b>LGPD</b></span>',
nameLink: "/",
repo: "https://github.com/niagalves/guia-basico-LGPD",
homePage: "/",
loadSidebar: true,
auto2top: true,
subMaxLevel: 1,
pagination: {
previousText: "Anterior",
nextText: "Próximo",
crossChapter: false,
crossChapterText: false,
},
search: {
maxAge: 86400000,
paths: "auto",
placeholder: "Digite aqui para pesquisar...",
noData: "Nenhum resultado encontrado, tente novamente.",
hideOtherSidebarContent: false,
},
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
</body>
</html>