This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.php
148 lines (108 loc) · 3.78 KB
/
contacto.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
<?php
/**
* Created by PhpStorm.
* User: Gerardo J. Montivero @ Iglesia Alameda
* Date: 15/05/2020
* Time: 06:34
*/
$lema = 'Contacto Iglesia Alameda';
$lemaSinEspacios = 'Contacto-Iglesia-Alameda';
$ahora = date('Y-m-d H:i');
$version = date('YmdHi');
$domingo = strtotime('today');
$title = 'Contacto';
/**
* @example pregunta si la cuarentena terminó
*/
$finQ = false;
include_once ('gerVendor/gerFunctions.php')
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include ('meta-base.php');
include ('style-base.php')
?>
<link href="css/styles.css?v=<?php echo $version ?>" rel="stylesheet">
<script src = "js/alameda.js"> </script>
<style>
strong{font-weight: 400 !important}
.card-text{font-size: 1.1em !important;
font-weight: 600 !important;}
.header {
background-image: url('images/series/cabecera_index.jpg');
background-size: cover;
background-position: center;
position: relative;
}
.overlay {
position: absolute;
min-height: 100%;
min-width: 100%;
left: 0;
top: 0;
background: rgba(255, 255, 255, 0.6);
}
img.resize {
width:10%; /* you can use % */
height: auto;
}
.btn-xl{
padding: 1.25rem 1.25rem;
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
border: none currentcolor;
border-radius: 10rem;
}
</style>
<link href="css/styles.css?v=<?php echo $version ?>" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css" rel="stylesheet" />
<link href="css/landings/heroic-features.css" rel="stylesheet">
</head>
<body>
<div class="container ">
<?php include 'nav.php'; ?>
<section class="p5-5 mt-1 " id="inicio">
<div class="container">
<div class="row fullscreen align-items-center justify-content-center">
<div class="col-sm-12 text-center mx-auto mt-1">
<header class="jumbotron my-1">
<a class="btn btn-blue btn-xl js-scroll-trigger mx-auto" href="https://forms.gle/yMmDuFqn6mXkJ8Sb6" target="_blank">
Completar Tarjeta de Conexión
</a>
<h1 class="text-uppercase text-black-50 font-weight-bold">
Bienvenido a la Alameda<br/>
¡Nos encataría conocerte!
</h1>
<span class="divider-new my-1">
<img src="images/institucional/iglesiaAlamedaInstagram.jpg"
class="resize img-fluid rounded-circle"></span>
<h5 class="text-black-50 font-weight-light my-1 p-1">
Creemos que Dios tiene un plan maravilloso para tu vida.<br/>
Nuestro profundo deseo es ayudarte a
comenzar una relación con Dios<br/>
y así crecer de tal manera que alcances
la verdadera felicidad para vos y tu hogar.<br/>
Estamos listos para oir tus sueños y acompañarte
a través de las etapas de la vida.<br/>
Sabemos que sos importante para Dios.<br/>
"Deseamos verte llenar tu vida con próposito"
</h5>
</header>
</div>
</div>
</div>
</section>
<section class="vacio mb-3">
</section>
<?php
include "footer.php";
?>
<!-- Bootstrap core JavaScript -->
<?php
include ('js-base.php');
?>
</body>
</html>