-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescricao.html
97 lines (95 loc) · 3.37 KB
/
descricao.html
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
---
title: Descrição da Dataverso PcD
heading: Encontrando as pessoas neste conjunto que é o mundo
description: Uma plataforma que facilita o acesso a dados e informações oficiais sobre as pessoas e habilidades.
pricing_table:
- name: Basic
color: "#8e8e8e"
features:
- text: $25 per month
highlight: true
- text: Up to 5 users
highlight: false
- text: Basic lead scoring
highlight: false
- text: CRM
highlight: false
- text: Basic reporting
highlight: false
- text: Sales map
highlight: false
call_to_action:
link: http://mysite.com?plan=basic
text: Get started
- name: Pro
color: "#4a4a4a"
features:
- text: $99 per month
highlight: true
- text: Everything in Basic
highlight: false
- text: Up to 25 users
highlight: false
- text: Advanced lead scoring
highlight: false
- text: Pipeline management
highlight: false
- text: Advanced reporting
highlight: false
call_to_action:
link: http://mysite.com?plan=pro
text: Get started
- name: Professional
color: "#000000"
features:
- text: $299 per month
highlight: true
- text: Everything in Basic and Pro
highlight: false
- text: Up to 100 users
highlight: false
- text: Campaign builder
highlight: false
- text: Machine learning
highlight: false
- text: Calendar
highlight: false
call_to_action:
link: http://mysite.com?plan=professional
text: Get started
faq:
- question: Como é possível colaborar com o projeto?
answer: Você pode colaborar com o projeto de várias maneiras, como fornecer dados atualizados, compartilhar o site com outras pessoas, fazer doações ou até mesmo se voluntariar para ajudar na manutenção do site. Sua contribuição é muito valiosa para nós!
- question: Como posso entrar em contato?
answer: Você pode entrar em contato a qualquer momento. Basta acessar a página de Contato no menu superior ou no rodapé, e também através de mensagens em nossas redes sociais.
- question: Vocês cobram pelo acesso aos conteúdos?
answer: Não, todas as informações são oficiais e gratuitas, desde dados, planilhas e documentos em PDF. Não há qualquer tipo de cobrança ou venda atrelada às publicações da plataforma.
- question: Dúvidas e sugestões?
answer: Por favor, entre em contato. Você pode nos enviar um e-mail para o endereço <a href="mailto:[email protected]">[email protected]</a>, que logo a equipe retornará.
---
<div class="plans">
{% for plan in page.pricing_table %}
<ul class="plan">
<li style="background: {{ plan.color }}">
<h3>{{ plan.name }}</h3>
</li>
{% for feature in plan.features %}
<li {% if feature.highlight %} class="highlighted"{% endif %}>{{ feature.text }}</li>
{% endfor %}
{% if plan.call_to_action %}
<li class="pricing-cta"><div class="button"><a style="background: {{ plan.color }}" href="{{ plan.call_to_action.link }}">{{ plan.call_to_action.text }} →</a></div></li>
{% endif %}
</ul>
{% endfor %}
</div>
{% if page.faq %}
<h2>FAQ básico</h2>
<dl class="faq">
{% for item in page.faq %}
<div>
<dt>{{ item.question }}</dt>
<dd>{{ item.answer }}</dd>
</div>
{% endfor %}
</dl>
{% endif %}