-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.php
More file actions
82 lines (68 loc) · 2.79 KB
/
data.php
File metadata and controls
82 lines (68 loc) · 2.79 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
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
<?php
$META_TITLE = 'Datos';
// $META_DESCRIPTION = "Provide SEO friendly description here!";
include_once 'includes/header.php';
$PAGE_TITLE = "Datos";
?>
<?php
// Define "Feature" Attributes here.
$feature = array(
"title" => "Almacenamiento y Gestión de Datos",
"tagline" => "Monitoree información importante de candidatos y contratación",
"bullets" => array(
'Guarde por un año toda la información y los datos recabados.',
'Almacene entrevistas e información de candidatos.',
'Tablero de indicadores con datos relevantes de sus candidatos, de su proceso de filtrado y su contratación.'
),
"image" => "features-icon-clock.png"
);
?>
<!-- Section -->
<div class="inner-center section">
<div>
<h1><?php echo $PAGE_TITLE; ?></h1>
<?php
// Features Navigation on Left Hand Side
include_once 'includes/features-nav.php'; ?>
<div class="feature" style="padding-left:50px;">
<div class="feature-image">
<?php echo "<img src=\"images/".$feature["image"]."\" />"; ?>
</div>
<div class="feature-info">
<h2 style="font-size:24px;"><?php echo $feature["title"]; ?></h2>
<h3><?php echo $feature["tagline"]; ?></h3>
<ul>
<?php foreach ($feature["bullets"] as $bullet) {
echo "<li>".$bullet."</li>";
} ?>
</ul>
</div>
</div>
</div>
</div> <!-- </section> -->
<!-- Teal Section CTA (Customize per Feature Page) -->
<div class="inner-center section section-teal">
<div>
<h2 style="font-size:30px;">Screenie optimizará su proceso de reclutamiento y selección de personal</h2>
<div class="cta-vid-container g-col-6">
<a href="http://www.youtube.com/embed/gZgHaT0cgSk?rel=0&wmode=transparent" class="youtube-popout">
<img src="images/mac-computer-only.png" image-name="mac-computer" alt="">
<img src="images/play-button-green.png" class="vid-play-button image-hoverable" image-resting="images/play-button-green.png" image-hover="images/play-button-teal.png" alt="Play Video">
</a>
</div>
<div class="g-col-5 pull-right">
<h3>Optimize su proceso de contratación de personal y empiece a ver resultados</h3>
<p>Contacte a un representante de Screenie para iniciar su periodo de prueba hoy mismo. Llena nuestro sencillo formulario y nos pondremos en contacto con usted.</p>
<div class="widget-cta-green-btn margin-auto">
<a href="free-trial.php" title="Try it Free for 30 Days" class="btn">
Prueba Gratuita de 30 días
<span class="cta-subtitle">No se requiere tarjeta de crédito</span>
</a>
<p>¡Prueba Screenie, sin compromiso!</p>
</div>
</div>
</div>
</div> <!-- </section> -->
<?php
include_once 'includes/footer.php';
?>