-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
163 lines (115 loc) · 6.27 KB
/
index.php
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?php include "config/config.php"; ?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="<?php echo DIRIMG.'logo_small_150x150.jpg'; ?>"/>
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="<?php echo DIRCSS.'style.css'; ?>">
<link rel="stylesheet" href="<?php echo DIRCSS.'style-section-doacao.css'; ?>">
<!-- ===== BOX ICONS ===== -->
<link href='https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<title>Instituto Berna Almeida</title>
</head>
<body>
<!-- HEADER -->
<header class="l-header">
<nav class="nav bd-grid">
<div>
<a href="<?php echo DIRPAGE.'index.php';?>" class="nav__logo">
Instituto Berna Almeida
</a>
</div>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item"><a href="<?php echo DIRPAGE.'index.php#home'; ?>" class="nav__link active">Home</a></li>
<li class="nav__item"><a href="<?php echo DIRPAGE.'index.php#about'; ?>" class="nav__link">Sobre</a></li>
<li class="nav__item"><a href="https://www.institutobernalmeida.com.br/blog" target="_blank" class="nav__link">Postagens</a></li>
<li class="nav__item"><a href="<?php echo DIRPAGE.'index.php#projects'; ?>" class="nav__link">Projetos</a></li>
<li class="nav__item"><a href="<?php echo DIRPAGE.'doacao.php#doacao';?>" class="nav__link">Fazer uma Doação</a></li>
</ul>
</div>
<!-- responsive mobile toggle -->
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu'></i>
</div>
</nav>
</header>
<!-- START MAIN -->
<main class="l-main">
<!-- HOME -->
<section class="home" id="home">
<div class="home__container bd-grid">
<h1 class="home__title"><span>Assistência</span><br>
a pessoas com Doenças Degenerativas</h1>
</div>
</section>
<!-- SECTION ABOUT -->
<section class="about section" id="about">
<h2 class="section-title">Sobre</h2>
<div class="about__container bd-grid">
<div class="about__img">
<img src="<?php echo DIRIMG.'logotipoBernaAlmeidaVertical.png'; ?>" alt="logo do Instituto Berna Almeida">
</div>
<div>
<h2 class="about__subtitle">Instituto Berna Almeida</h2>
<span class="about__profession">Ajudando Pessoas</span>
<p class="about__text">Somos uma ONG de assistência a pessoas com deficiência mental, Alzheimer, demências em geral. </p>
<p>Atuamos na captação de medicamentos, alimentação enteral, fraldas, insumos, cadeira de rodas,
camas hospitalar, cadeiras de banho, tudo aquilo que você tem e não faz
mais uso.</p>
<br>
<span class="about__profession"> Tem algo para doar. Conecte-se conosco.</span>
<div class="about__social">
<a href="https://www.facebook.com/institutobernalmeida" target="_blank" class="about__social-icon"><i class="bx bxl-facebook-square"></i></a>
<a href="https://www.instagram.com/institutobernalmeida" target="_blank" class="about__social-icon"><i class="bx bxl-instagram" ></i></a>
</div>
</div>
</div>
</section>
<!-- SECTION PROJECTS -->
<?php include (DIRREQ."core/templates/project.php"); ?>
<!-- ARTIGOS RECENTES | BLOG -->
<?php include (DIRREQ."core/templates/archives-blog.php"); ?>
<!-- SECTION FACA SUA DOACAO -->
<section class="doacao section">
<div class="doacao__text">
<h2>Faça Sua Doação</h2>
<a href="<?php echo DIRPAGE.'doacao.php#doacao';?>" >Doe Agora </a>
</div>
</section>
</main>
<!-- END MAIN -->
<!-- FOOTER -->
<footer class="footer section">
<div class="footer__container bd-grid">
<div class="footer__data">
<h2 class="footer__title">Instituto Berna Almeida</h2>
<p class="footer__text">Informações de Registro.</p>
<p>
CNPJ: 32.431.661/0001-68 - 32431661000168 <br>
Razão Social: Instituto Berna Almeida-IBA <br>
Nome Fantasia: IBA</p>
</div>
<div class="footer__data">
<h2 class="footer__title">Contact</h2>
<p>[email protected]</p>
<p>WhatsApp: 61 9 8678-8678</p>
</div>
<div class="footer__data">
<h2 class="footer__title">Junte-se à nós</h2>
<a href="https://www.facebook.com/institutobernalmeida" target="_blank" class="footer__social">Facebook</a>
<a href="https://www.instagram.com/institutobernalmeida" target="_blank" class="footer__social">Instagram</a>
<a href="https://www.institutobernalmeida.com.br/blog" target="_blank" class="footer__social">Blog</a>
</div>
<!-- <P> Trabalho voluntário desenvolvido by Isaque Menezes </P>-->
</div>
</footer>
<!-- SCRIPTS JS -->
<!--===== SCROLL REVEAL =====-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--===== MAIN JS =====-->
<script src="<?php echo DIRJS . 'main.js'; ?>"></script>
</body>
</html>