forked from unifesp/prodmais
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanual.php
More file actions
55 lines (41 loc) · 1.52 KB
/
manual.php
File metadata and controls
55 lines (41 loc) · 1.52 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="pt-br" dir="ltr">
<head>
<?php
require 'inc/config.php';
require 'inc/meta-header.php';
?>
<meta charset="utf-8" />
<title>Manual do Prodmais</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="description" content="Prodmais." />
<meta name="keywords" content="Produção acadêmica, lattes, ORCID" />
</head>
<body data-theme="<?php echo $theme; ?>" class="c-wrapper-body">
<?php if (file_exists('inc/google_analytics.php')) {
include 'inc/google_analytics.php';
} ?>
<?php require 'inc/navbar.php'; ?>
<main class="c-wrapper-container">
<div class="c-wrapper-paper">
<div class="c-wrapper-inner">
<h2>Manual do Prodmais</h2>
<div>
</div>
<p>O Prodmais é uma ferramenta que agrega informação de diversas fontes, mas não realiza processamento
posterior
nelas. Neste manual prático você podrá tirar suas dúvidas sobre como utilizar o Prodmais. É fácil
efetuar as
suas buscas no Prodmais, e você pode fazer utilizando um dos seguintes caminhos:</p>
<?php
$parsedown = new Parsedown();
$txtm = file_get_contents('inc/md/tips_home.md');
echo $parsedown->text($txtm);
?>
</div>
</div>
</div>
</main>
<?php include('inc/footer.php'); ?>
</body>
</html>