-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpricing.xslt
108 lines (102 loc) · 4.13 KB
/
pricing.xslt
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
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:x="http://panax.io/xdom"
xmlns:state="http://panax.io/state"
xmlns:custom="http://panax.io/custom"
exclude-result-prefixes="#default"
>
<xsl:template match="pricing">
<main>
<style>
<![CDATA[
body {
background-image: linear-gradient(180deg, #eee, #fff 100px, #fff);
}
.container {
max-width: 960px;
}
.pricing-header {
max-width: 700px;
}
.mailto{
display:block;
width:100px;
color:white;
}
]]></style>
<div class="container py-3">
<header>
<div class="pricing-header p-3 pb-md-4 mx-auto text-center">
<h1 class="display-4 fw-normal">Precios</h1>
<p class="fs-5 text-muted">Los siguientes precios son por la prestación del servicio y tienen una vigencia de un mes a partir de esta fecha. Precios no incluyen impuestos.</p>
</div>
</header>
<main>
<div class="row row-cols-1 row-cols-md-3 mb-3 text-center">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Mensual</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">
$3.00 <small class="text-muted fw-light">MXN/correo</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Notificaciones en telegram</li>
<li>Reporte de registros</li>
<li>Soporte por correo electrónico</li>
</ul>
<button type="button" class="w-100 btn btn-lg btn-primary" disabled="disabled">
<a class="mailto w-100 btn btn-lg btn-primary" href="mailto:[email protected]">Disponible Julio 2021</a>
</button>
</div>
</div>
</div>
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Anual</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">
$25.00 <small class="text-muted fw-light">MXN/correo</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Notificaciones en telegram</li>
<li>Reporte de registros</li>
<li>Soporte por correo electrónico</li>
</ul>
<button type="button" class="w-100 btn btn-lg btn-primary" disabled="disabled">
<a class="mailto w-100 btn btn-lg btn-primary" href="mailto:[email protected]">Disponible Julio 2021</a>
</button>
</div>
</div>
</div>
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm border-primary">
<div class="card-header py-3 text-white bg-primary border-primary">
<h4 class="my-0 fw-normal">Preventa</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">
$12,000.00 <small class="text-muted fw-light">MXN/dominio</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Notificaciones en telegram</li>
<li>Reporte de registros</li>
<li>Soporte por email por un año.</li>
</ul>
<button type="button" class="w-100 btn btn-lg btn-primary">
<a class="mailto w-100 btn btn-lg btn-primary" href="mailto:[email protected]">Contacto</a>
</button>
</div>
</div>
</div>
</div>
</main>
</div>
</main>
</xsl:template>
</xsl:stylesheet>