forked from Coding-Bunker/codingbunker-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partner.html
115 lines (109 loc) · 4.06 KB
/
partner.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
---
title: Partner
heading: Come diventare nostro Partner
description: In questa sezione ti spieghiamo perché diventare nostro partner e come puoi entrare in contatto con noi per discutere assieme di nuove iniziative e percorsi che possiamo intraprendere.
partner_info:
- name: Invia la richiesta online
color: "#A576FF"
features:
- text: Clicca il bottone qui sotto e verrai rimandato ad un form.
highlight: true
- name: Ti contattiamo noi
color: "#A576FF"
features:
- text: Entro 15 giorni organizzeremo una call insieme.
highlight: true
- name: Iniziamo a collaborare
color: "#A576FF"
features:
- text: Inizieremo una partnership con i punti definiti durante la call.
highlight: true
faq:
- question: Sono adatto a collaborare con voi?
answer: Vogliamo entrare in contatto con professionisti ed aziende che hanno i nostri stessi valori e che vogliono avere un impatto considerevole nel mondo dell'informatica ma anche in settori correlati. Se pensi che il nostro progetto possa apportare valore alla tua attività, invia la richiesta per diventare nostro partner.
- question: Perchè dovrei diventare vostro partner?
answer: Perchè siamo una community attiva sempre in cerca di nuovi stimoli!
- question: Quali sono i punti cardine della nostra (eventuale) collaborazione?
answer: I punti principali su cui facciamo leva sono i seguenti; pubblicare offerte di lavoro, avviare progetti open source per apprendimento o beneficienza, offrire servizi di tutoring e corsi.
- question: Ho molti altri dubbi...
answer: Contattaci per qualsiasi domanda <a href="#">info@codingbunker.it</a>.
---
<style media="screen">
.wrapper {
text-align: center;
}
.responsive {
width:35%;
margin-right: 60px;
height: auto;
}
.responsive-small {
width:25%;
height: auto;
}
</style>
<div class="plans">
{% for plan in page.partner_info %}
<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 %}
</ul>
{% endfor %}
</div>
<div class="wrapper">
<div class="button alt"><a href="https://forms.gle/Vk8nkcoDWT4doe788" target="_blank">Invia richiesta</a></div>
</div>
<br>
<br>
<br>
<div class="wrapper">
<h2>I nostri partner</h2>
<p class="wrapper">Ecco i nostri partner con cui stiamo attualmente collaborando:</p>
<!-- Codemotion -->
<a href="https://community.codemotion.com/coding-bunker/" target="_blank">
<img src="{{ site.baseurl }}/images/codemotion.png" alt="codemotion" class="responsive"/>
</a>
<!-- StreamYard -->
<a href="https://streamyard.com/?fpr=coding-bunker" target="_blank">
<img src="{{ site.baseurl }}/images/streamyard.png" alt="streamyard" class="responsive"/>
</a>
<!-- Start2impact -->
<a href="https://start2impact.work/coding-bunker" target="_blank">
<img src="{{ site.baseurl }}/images/s2i.png" alt="start2impact" class="responsive"/>
</a>
<!-- TomorrowDevs -->
<a href="https://www.tomorrowdevs.com/" target="_blank">
<img src="{{ site.baseurl }}/images/tomorrowdevs.png" alt="tomorrowdevs" class="responsive"/>
</a>
<!-- Zwap -->
<a href="https://www.zwap.in/" target="_blank">
<img src="{{ site.baseurl }}/images/zwap.png" alt="zwap" class="responsive" style="padding-right:30px;"/>
</a>
<!-- Grusp -->
<a href="https://www.grusp.org/" target="_blank">
<img src="{{ site.baseurl }}/images/grusp.png" alt="grusp" class="responsive-small"/>
</a> <br>
<!-- Fiscozen -->
<a href="https://www.fiscozen.it/invitoCODINGBUNKER50" target="_blank">
<img src="{{ site.baseurl }}/images/fiscozen.svg" alt="fiscozen" class="responsive-small" style="padding-top:50px;"/>
</a>
</div>
<br>
<br>
<div>
{% if page.faq %}
<h2>FAQ</h2>
<dl class="faq">
{% for item in page.faq %}
<div>
<dt>{{ item.question }}</dt>
<dd>{{ item.answer }}</dd>
</div>
{% endfor %}
</dl>
{% endif %}
</div>