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 pathavanza.php
135 lines (117 loc) · 4.06 KB
/
avanza.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
<?php
/**
* Created by PhpStorm.
* User: Gerardo J. Montivero @ Iglesia Alameda
* Date: 18/05/2020
* Time: 06:56
*/
$lema = 'Taller de Madurez';
$lemaSinEspacios = 'Taller-Madurez-Iglesia-Alameda';
$ahora = date('Y-m-d H:i');
$version = date('YmdHi');
$domingo = strtotime('today');
$title = 'Taller de Madurez';
/**
* @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-uikit.php')
?>
<link href="css/styles.css?v=<?php echo $version ?>" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<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>
</head>
<body>
<header>
<?php include 'nav.php'; ?>
<section class="js-parallax u-promo-block u-promo-block--mheight-500 u-overlay u-overlay--dark text-dark" style="background-image: url(images/aldia/contacto.png); background-repeat: repeat-y ;">
<!-- Promo Content -->
<div class="container u-overlay__inner u-ver-center u-content-space">
<div class="row justify-content-center">
<div class="col-12">
<div class="text-center">
<div class="site-heading p-5">
<img src="images/LOGO_ALAMEDA_CON_TEXTO_B.png" style="max-height: 150px" class="img-fluid ">
</div>
</div>
</div>
</div>
</div>
<!-- End Promo Content -->
</section>
</header>
<main role="main" class="bg-white">
<!-- Contact Form -->
<section class="a-content-space-medium">
<div class="container">
<div class="text-center">
<a class="btn btn-blue js-scroll-trigger mx-auto btn--pill" href="https://docs.google.com/forms/d/e/1FAIpQLSda6TLmHSBlpiFI18EvBw9WgkjSaqZs53H0sLbkMbyDPz1sxQ/viewform" target="_blank">
<i class="far fa-list-alt text-white"></i> Más detalles e inscripción
</a>
</div>
<header class="text-center w-md-50 mx-auto mb-8 mt-1">
<div class="show" id="blockquotes-center-1" role="tabpanel" aria-labelledby="blockquotes-center-tab-1">
<!-- Centered -->
<blockquote class="blockquote-v1 blockquote-v1--left align-text-top">
<h3 >
En la CHARLA DE MADUREZ, descubrirás los principios para desatar todo el potencial de Dios para tu vida.
</h3>
<p class="h5">No te la pierdas.</p>
<footer class="blockquote-footer">
Martes 9/6 a las 19hs a través de la plataforma ZOOM<br/>
</footer>
</blockquote>
<!-- End Centered -->
</div>
</header>
</div>
</section>
<!-- End Contact Form -->
</main>
<?php
include "footer.php";
?>
<!-- Bootstrap core JavaScript -->
<?php
include ('js-base-uikit.php');
?>
<script src="js/alameda.js"> </script>
</body>
</html>