-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 2.6 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 2.6 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
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<!-- METAS -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Este é um projeto de um gerenciador de arquivos personalizado desenvolvido utilizando a biblioteca DevExpress. Ele oferece uma interface intuitiva para navegar e gerenciar arquivos, com recursos como download, exclusão e detalhes personalizados.">
<meta property="og:locale" content="pt_BR">
<meta property="og:image" content="https://tifodao.com/images/diego.ico">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="1280">
<meta property="og:image:height" content="800">
<meta property="og:type" content="website">
<meta property="og:type" content="article">
<meta property="og:title" content="Diego Melo">
<meta property="article:author" content="Diego Melo">
<meta property="article:published_time" content="date_time">
<meta property=og:description content="Este é um projeto de um gerenciador de arquivos personalizado desenvolvido utilizando a biblioteca DevExpress. Ele oferece uma interface intuitiva para navegar e gerenciar arquivos, com recursos como download, exclusão e detalhes personalizados.">
<!-- TITLE -->
<title>FileExplorer</title>
<!-- ESTILOS -->
<link rel="icon" href="https://tifodao.com/images/diego.ico">
<link rel="stylesheet" type="text/css" href="assets/CascadingStyleSheets/style.css">
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.1.6/css/dx.common.css">
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.1.6/css/dx.light.css">
<!-- SCRIPTS -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.2/jszip.min.js"></script>
<script type="text/javascript" src="https://cdn3.devexpress.com/jslib/20.1.6/js/dx.all.debug.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/1.3.8/FileSaver.min.js"></script>
</head>
<body>
<div class="dx-viewport demo-container">
<div id="file-manager"></div>
</div>
<!-- SCRIPT -->
<script type="text/javascript" src="assets/JavaScript/script.js"></script>
</body>
</html>