Welcome to mirror list, hosted at ThFree Co, Russian Federation.

page-jobs.php - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5912d5029ed661ea286f808ac565aee3ed3ed3cb (plain)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
<head>
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/pages/jobs.css?v=2" rel="stylesheet">
	<script>
	require(["require.config"], function() {
		require(["bootstrap", "pages/jobs"])
	});
	</script>
</head>

<section class="hero-section second-menu">
    <div class="background jobs-background">
        <div class="container">
                <div class="col-md-6 topheader">
                    <h1><?php echo $l->t('We are hiring');?></h1>
                    <h2><?php echo $l->t('Nextcloud is looking for people who want to join our team');?></h2>
                </div>
            </div>
        </div>
    </div>
</section>
<section class="section-company-description">
	<div class="container">
        <div class="row">
            <div class="col-md-10 col-md-offset-1">
                <h2><?php echo $l->t('Company description');?></h2>

                <p><?php echo $l->t('We are a modern, distributed, open source company. It is our mission to provide our users and customers with the means for data storage, access and communication under their control; protecting their privacy and security');?>.</p>

                <p><?php echo $l->t('We pursue a fully-open strategy, keeping internal communication to a minimum while aiming to work, discuss and develop in public. We are a thriving, quickly growing company with a solid customer base. An open source background or experience contributing to Nextcloud is a big plus for job applicants! Especially for developers we pursue a strong "hire from the community" strategy.');?></p>
                <p><?php echo $l->t('Nextcloud actively strives for diversity and we would like to especially encourage applications by people from underrepresented groups in tech.');?></p>
                <p><?php echo $l->t('As a very international, distributed company with employees in 2 dozen countries and on most continents, our company language is English, most of us work from home or a local co-working space and working hours are very flexible. We try to bring everyone in the company together for a week 5-6 times a year, usually in Berlin and various teams also organize their own, separate meetings throughout the year as working together is fun and productive!');?></p>
            </div>
        </div>
        <div class="row">
            <div class="col-md-8 col-md-offset-2">
            <a href="#FAQ" data-toggle="collapse"><h3 class="jobs">FAQs applying with Nextcloud<span class="icon-arrow"></h3></a>
            <div id="FAQ" class="collapse">
                <h3>How do I apply for a job?</h3>
                <p>Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume, the role you’re interested in and your motivation. We post new vacancies regularly, so it is worth having a look every now and then, if you don´t find a suitable vacancy first time around.</p>

                <h3>Should I apply multiple times?</h3>
                <p>It is not necessary to apply multiple times when you see more than one vacancy that is of interest to you. In this case please let us know which positions are of interest to you, we will then be able to consider your application for all positions listed. Multiple applications just cause additional administrative burden. </p>

                <h3>
                Reapplying after having been rejected?</h3>
                <p>In case you have been rejected in the past, we encourage you to reapply if your qualifications or experience have changed in the meantime, or if you see a new role more suitable to your skills.</p>

                <h3>I applied for a job with Nextcloud. What are the next steps?</h3>
                <p>Thanks for your interest in Nextcloud! We will reach out if we need more information from you.</p>
                <p>If your experience is a good fit for our vacancy, we will be in touch soon. Please note that it's not possible for us to respond to every candidate, but we review every application.</p>

                <h3>What should I include in my application?</h3>
                <p>Please always include your CV in pdf format, detailing relevant skills, keywords, and experience. You might want to consider writing a short note about who you are and why you want to join Nextcloud. Additional information that is valuable to us and you can, but don’t have to include availability (when can you start and how many hours per week to you want to work?) and salary desired.</p>

                <h3>What is Nextclouds position regarding diversity and inclusion?</h3>
                <p>Our goal is to continue to grow Nextcloud and build a more diverse team in the most efficient way possible. Diversity and inclusion are some of our core values. </p>
                <p>Nextcloud’s people policies and practices relating to recruitment, employment and career development aim to ensure that we welcome people from all walks of lives in their individuality and do not discriminate.</p>

                <h3>We don't accept solicitations by recruitment agencies.</h3>
                <p>At Nextcloud, we do not accept solicitations from recruitment agencies, headhunters, or outsourcing organizations. Please refrain from sending us information or profiles as they will not be considered. </p>
            </div>
        </div>
    </div>
</section>

<section class="section-jobs-opening">
	<div class="container">
		<h2 class="text-center">Job openings</h2>
		<div class="wrapper-text">


            <a href="#keyaccountmgr" data-toggle="collapse"><h3 class="jobs">Key Account Manager<span class="icon-arrow"></span></h3></a>
			<div id="keyaccountmgr" class="collapse">
				<p>We are looking for a passionate Key Account Manager who will partner with and ensure the long-term success of our customers.</p>
				<p>As a Key Account Manager you will be developing long-term relationships with your portfolio of assigned customers, will be developing new business from existing clients, and actively seek new sales opportunities. Connecting with key business executives and stakeholders you will liaise between customers and internal teams to ensure the timely and successful delivery of our solutions according to customers.</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>

				<ul>
					<li>Negotiate contracts and close agreements  with prospective clients with the goals of maximizing profits as well as building and maintaining strong, long-lasting customer relationships</li>
					<li>Be the lead responsible point of contact for all matters specific to your customers</li>
					<li>Collaborate with our Partners in delivering the best solution to our customers</li>
					<li>Ensure the timely and successful delivery of our solutions according to customer needs and objectives</li>
					<li>Communicate clearly the progress of monthly/quarterly initiatives internally and forecast and track key account metrics</li>
					<li>Assist with high severity requests or issue escalations as needed</li>
				</ul>

				<h3 class="section--paragraph__title">Required skills:</h3>

				<ul>
					<li>Key account management experience in enterprise software sales, responsible for (strategic) key accounts, ideally in the French market and / or in either of these sectors: telecommunications, public sector, educational sector</li>
					<li>Ability to communicate, present and influence credibly and effectively at all levels of the organization, including executive and C-level</li>
					<li>Experience in delivering client-focused solutions based on customers individual needs</li>
					<li>Ability to manage multiple projects at a time while prioritizing</li>
					<li>Excellent listening, negotiation and presentation skills as well as verbal and written communications skills</li>
					<li>Drive and ambition, problem solving skills and flexibility</li>
					<li>Language skills: English essential, French and German ideal, any other language beneficial</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>

				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
				</ul>

				<p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>

			<a href="#accountmgr" data-toggle="collapse"><h3 class="jobs">Account Manager<span class="icon-arrow"></span></h3></a>
			<div id="accountmgr" class="collapse">
				<p>We are looking for a passionate Account Manager who will partner with and ensure the long-term success of our customers.</p>
				<p>Your account management responsibilities include developing long-term relationships with your portfolio of assigned customers, connecting with key business executives and stakeholders. You will liaise between customers and cross-functional internal teams to ensure the timely and successful delivery of our solutions according to customer needs.</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>

				<ul>
					<li>Operate as the lead point of contact for any and all matters
					specific to your customers</li>
					<li>Collaborate with our Partners in delivering the best solution to our
					customers</li>
					<li>Build and maintain strong, long-lasting customer relationships</li>
					<li>Ensure the timely and successful delivery of our solutions according
					to customer needs and objectives</li>
					<li>Communicate clearly the progress of monthly/quarterly initiatives
					internally</li>
					<li>Forecast and track key account metrics</li>
					<li>Negotiate tender and contract terms and conditions to meet both
					client and company needs</li>
					<li>Identify and grow opportunities within territory and collaborate
					with sales teams to ensure growth attainment</li>
					<li>Assist with high severity requests or issue escalations as needed</li>
				</ul>

				<h3 class="section--paragraph__title">Required skills:</h3>

				<ul>
					<li>Proven account management or other relevant experience</li>
					<li>Demonstrated ability to communicate, present and influence credibly
					and effectively at all levels of the organization, including
					executive and C-level</li>
					<li>Experience in delivering client-focused solutions based on customer
					needs</li>
					<li>Proven ability to manage multiple projects at a time while paying
					strict attention to prioritize</li>
					<li>Excellent listening, negotiation and presentation skills</li>
					<li>Excellent verbal and written communications skills</li>
					<li>Problem solving skills</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>

				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
				</ul>

				<p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>

			<!--<a href="#salesrep" data-toggle="collapse"><h3 class="jobs">Sales Representative<span class="icon-arrow"></span></h3></a>
			<div id="salesrep" class="collapse">
				<p>We are looking for a passionate Sales Representative to work with prospective customers to determine if Nextcloud is a good fit for them.</p>
				<p>Your responsibilities include building relationships with prospective customers and connecting with key business executives and stakeholders. You will research and develop market segments, work with Marketing to generate and classify leads, develop them to opportunities and work as part of our internal cross-functional internal teams to ensure the customers get timely information and fitting solutions to their problems.</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>

				<ul>
                    <li>Work with marketing on outreach, lead generation and classification of opportunities</li>
                    <li>Research, develop and maintain communication within and for specific market segments</li>
					<li>Collaborate with your team and our Partners in determining the best
					solution for our customers</li>
					<li>Build and maintain strong, long-lasting customer relationships</li>
					<li>Communicate clearly the progress of monthly/quarterly initiatives
					internally</li>
					<li>Forecast and track key account metrics</li>
					<li>negotiating tender and contract terms and conditions to meet both
					client and company needs</li>
					<li>Identify and grow opportunities within territory and collaborate
					with sales teams to ensure growth attainment</li>
					<li>Assist with high severity requests or issue escalations as needed</li>
				</ul>

				<h3 class="section--paragraph__title">Required skills:</h3>

				<ul>
					<li>Proven sales/account management or other relevant experience</li>
					<li>Demonstrated ability to communicate, present and influence credibly
					and effectively at all levels of the organization, including
					executive and C-level</li>
					<li>Experience in delivering client-focused solutions based on customer
					needs</li>
					<li>Proven ability to manage multiple projects at a time while paying
					strict attention to prioritize</li>
					<li>Excellent listening, negotiation and presentation skills</li>
					<li>Excellent verbal and written communications skills</li>
					<li>Problem solving skills</li>
					<li>Writing and speaking German and/or French language</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>

				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
				</ul>

				<p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>-->


			<a href="#junioraccountmgr" data-toggle="collapse"><h3 class="jobs">Junior Account Manager<span class="icon-arrow"></span></h3></a>
			<div id="junioraccountmgr" class="collapse">
				<p>We are looking for a passionate Junior Account Manager to work with prospective customers to determine if Nextcloud is a good fit for them.</p>
				<p>Your responsibilities include building relationships with prospective customers and connecting with key business executives and stakeholders. You will research and develop market segments, to generate and classify leads, develop them to opportunities and work as part of our internal cross-functional internal teams to ensure the customers get timely information and fitting solutions to their needs.</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>

				<ul>
                    <li>Work with marketing on outreach, lead generation and classification of opportunities</li>
                    <li>Research, develop and maintain communication within and for specific market segments</li>
					<li>Collaborate with your team and our Partners in determining the best
					solution for our customers</li>
					<li>Build and maintain strong, long-lasting customer relationships</li>
					<li>Communicate clearly the progress of monthly/quarterly initiatives
					internally</li>
					<li>Forecast and track key account metrics</li>
					<li>negotiating tender and contract terms and conditions to meet both
					client and company needs</li>
					<li>Identify and grow opportunities within territory and collaborate
					with sales teams to ensure growth attainment</li>
					<li>Assist with high severity requests or issue escalations as needed</li>
				</ul>

				<h3 class="section--paragraph__title">Required skills:</h3>

				<ul>
					<li>Proven sales/account management or other relevant experience</li>
					<li>Demonstrated ability to communicate, present and influence credibly
					and effectively at all levels of the organization, including
					executive and C-level</li>
					<li>Experience in delivering client-focused solutions based on customer
					needs</li>
					<li>Proven ability to manage multiple projects at a time while paying
					strict attention to prioritize</li>
					<li>Excellent listening, negotiation and presentation skills</li>
					<li>Excellent verbal and written communications skills</li>
					<li>Problem solving skills</li>
					<li>Fluent in writing and speaking English. More languages are welcome.</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>

				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
				</ul>

				<p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>

      <a href="#marketing" data-toggle="collapse"><h3 class="jobs">B2B marketing manager software France<span class="icon-arrow"></span></h3></a>
			<div id="marketing" class="collapse">
				<p>Our marketing team is looking for a new member: you would help grow and multiply our marketing efforts in France. You'd be responsible for building up Nextcloud marketing in France, and your efforts would include implementing marketing campaigns, reaching out to and working with press, translating and putting together promotional materials and organizing or attending events. We're looking for somebody with marketing experience, able to work remote in an international team and willing to learn and try new things!</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Creating, implementing and measuring marketing campaigns</li>
					<li>Organize events and our presence at conferences</li>
					<li>Build up content and social media presence</li>
					<li>Do PR and communication outreach</li>
					<li>Work with both community and business</li>
				</ul>

				<h3 class="section--paragraph__title">Skills:</h3>
				<ul>
					<li>Interest in messaging, public relations, able to build relations with local press</li>
					<li>Able to represent Nextcloud at events (self organized or attending)</li>
					<li>Writing and visual communication skills</li>
					<li>Being able to work independently, track progress and ask for help when needed</li>
					<li>Being fluent in French and living in France are required</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building up a local presence. It is a wide-ranging job and we strive to provide the freedom and space to find the right approach! We look for somebody with some marketing or sales/business development experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>
            <a href="#marketing-spain" data-toggle="collapse"><h3 class="jobs">B2B marketing manager software Spain<span class="icon-arrow"></span></h3></a>
			<div id="marketing-spain" class="collapse">
				<p>Our marketing team is looking for a new member: you would help grow and multiply our marketing efforts in Spain. You'd be responsible for building up Nextcloud marketing in Spain, and your efforts would include implementing marketing campaigns, reaching out to and working with press, translating and putting together promotional materials and organizing or attending events. We're looking for somebody with marketing experience, able to work remote in an international team and willing to learn and try new things!</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Creating, implementing and measuring marketing campaigns</li>
					<li>Organize events and our presence at conferences</li>
					<li>Build up content and social media presence</li>
					<li>Do PR and communication outreach</li>
					<li>Work with both community and business</li>
				</ul>

				<h3 class="section--paragraph__title">Skills:</h3>
				<ul>
					<li>Interest in messaging, public relations, able to build relations with local press</li>
					<li>Able to represent Nextcloud at events (self organized or attending)</li>
					<li>Writing and visual communication skills</li>
					<li>Being able to work independently, track progress and ask for help when needed</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building up a local presence. It is a wide-ranging job and we strive to provide the freedom and space to find the right approach! We look for somebody with some marketing or sales/business development experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>
            <a href="#marketing-italy" data-toggle="collapse"><h3 class="jobs">B2B marketing manager software Italy<span class="icon-arrow"></span></h3></a>
			<div id="marketing-italy" class="collapse">
				<p>Our marketing team is looking for a new member: you would help grow and multiply our marketing efforts in Italy. You'd be responsible for building up Nextcloud marketing in Italy, and your efforts would include implementing marketing campaigns, reaching out to and working with press, translating and putting together promotional materials and organizing or attending events. We're looking for somebody with marketing experience, able to work remote in an international team and willing to learn and try new things!</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Creating, implementing and measuring marketing campaigns</li>
					<li>Organize events and our presence at conferences</li>
					<li>Build up content and social media presence</li>
					<li>Do PR and communication outreach</li>
					<li>Work with both community and business</li>
				</ul>

				<h3 class="section--paragraph__title">Skills:</h3>
				<ul>
					<li>Interest in messaging, public relations, able to build relations with local press</li>
					<li>Able to represent Nextcloud at events (self organized or attending)</li>
					<li>Writing and visual communication skills</li>
					<li>Being able to work independently, track progress and ask for help when needed</li>
					<li>Speak Italian and live in Italy, ideally quite central</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building up a local presence. It is a wide-ranging job and we strive to provide the freedom and space to find the right approach! We look for somebody with some marketing or sales/business development experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>
            <a href="#marketing-nordics" data-toggle="collapse"><h3 class="jobs">B2B marketing manager software Nordics<span class="icon-arrow"></span></h3></a>
			<div id="marketing-nordics" class="collapse">
				<p>Our marketing team is looking for a new member: you would help grow and multiply our marketing efforts in the Nordic countries, Denmark, Norway, Sweden and Finland. You'd be responsible for building up Nextcloud marketing in your region, and your efforts would include implementing marketing campaigns, reaching out to and working with press, translating and putting together promotional materials and organizing or attending events. We're looking for somebody with marketing experience, able to work remote in an international team and willing to learn and try new things!</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Creating, implementing and measuring marketing campaigns</li>
					<li>Organize events and our presence at conferences</li>
					<li>Build up content and social media presence</li>
					<li>Do PR and communication outreach</li>
					<li>Work with both community and business</li>
				</ul>

				<h3 class="section--paragraph__title">Skills:</h3>
				<ul>
					<li>Interest in messaging, public relations, able to build relations with local press</li>
					<li>Able to represent Nextcloud at events (self organized or attending)</li>
					<li>Writing and visual communication skills</li>
					<li>Being able to work independently, track progress and ask for help when needed</li>
					<li>Speak at least 3 of the languages in the Nordics and live in one of the 4 mentioned countries</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building up a local presence. It is a wide-ranging job and we strive to provide the freedom and space to find the right approach! We look for somebody with some marketing or sales/business development experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>
            <a href="#marketing-_benelux" data-toggle="collapse"><h3 class="jobs">B2B marketing manager software Benelux<span class="icon-arrow"></span></h3></a>
			<div id="marketing-_benelux" class="collapse">
				<p>Our marketing team is looking for a new member: you would help grow and multiply our marketing efforts in the Benelux. You'd be responsible for building up Nextcloud marketing in your region, and your efforts would include implementing marketing campaigns, reaching out to and working with press, translating and putting together promotional materials and organizing or attending events. We're looking for somebody with marketing experience, able to work remote in an international team and willing to learn and try new things!</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Creating, implementing and measuring marketing campaigns</li>
					<li>Organize events and our presence at conferences</li>
					<li>Build up content and social media presence</li>
					<li>Do PR and communication outreach</li>
					<li>Work with both community and business</li>
				</ul>

				<h3 class="section--paragraph__title">Skills:</h3>
				<ul>
					<li>Interest in messaging, public relations, able to build relations with local press</li>
					<li>Able to represent Nextcloud at events (self organized or attending)</li>
					<li>Writing and visual communication skills</li>
					<li>Being able to work independently, track progress and ask for help when needed</li>
					<li>Speak Dutch and, ideally, also French</li>
					<li>Live in the Benelux</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building up a local presence. It is a wide-ranging job and we strive to provide the freedom and space to find the right approach! We look for somebody with some marketing or sales/business development experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>

			<a href="#marketing-local" data-toggle="collapse"><h3 class="jobs">B2B marketing manager software - in your region!<span class="icon-arrow"></span></h3></a>
			<div id="marketing-local" class="collapse">
				<p>Our marketing team is looking for a new member: you would help grow and multiply our marketing efforts in your region. We are looking for enthusiastic people in countries and regions not mentioned above and where Nextcloud has a small presence but great potential! You'd be responsible for building up Nextcloud marketing to achieve that potential, and your efforts would include implementing marketing campaigns, reaching out to and working with press, translating and putting together promotional materials and organizing or attending events. We're looking for somebody with marketing experience, able to work remote in an international team and willing to learn and try new things!</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Creating, implementing and measuring marketing campaigns</li>
					<li>Organize events and our presence at conferences</li>
					<li>Build up content and social media presence</li>
					<li>Do PR and communication outreach</li>
					<li>Work with both community and business</li>
				</ul>

				<h3 class="section--paragraph__title">Skills:</h3>
				<ul>
					<li>Interest in messaging, public relations, able to build relations with local press</li>
					<li>Able to represent Nextcloud at events (self organized or attending)</li>
					<li>Writing and visual communication skills</li>
					<li>Being able to work independently, track progress and ask for help when needed</li>

				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building up a local presence. It is a wide-ranging job and we strive to provide the freedom and space to find the right approach! We look for somebody with some marketing or sales/business development experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>

			<a href="#marketing-pm" data-toggle="collapse"><h3 class="jobs">Marketing project manager<span class="icon-arrow"></span></h3></a>
			<div id="marketing-pm" class="collapse">
				<p>Our marketing team is looking for a marketing project manager and team lead who helps us build and then ensures the success of our local marketing team. You would be responsible for managing the local marketing people and help them achieve their potential. Your focus should be on facilitating them in their job, interfacing with the rest of the organization, tracking their progress and helping them develop and share best practices. We are looking for somebody with team leadership experience, able to work remote in an international team and willing to learn and try new things!</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Manage local and remote marketing experts</li>
					<li>Coordinating marketing activities like events, PR, social media, web and other</li>
					<li>Setting goals and monitoring progress</li>
					<li>Ensure alignment with global marketing team</li>
					<li>Coordinate and handle internal resources</li>
					<li>Report and escalate to management as needed</li>
				</ul>

				<h3 class="section--paragraph__title">Skills:</h3>
				<ul>
                    <li>Comfortable working remotely with people from all over the world in a global company</li>
                    <li>Capable of managing many parallel tasks</li>
                    <li>Good planning and tracking skills</li>
                    <li>Pro-active communication</li>
                    <li>Good marketing experience</li>
                    <li>Very good English skills. German is a plus.</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building up a team. It is a wide-ranging job and we strive to provide the freedom and space to find the right approach! We look for somebody with some team lead experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>


			<a href="#partner-marketing" data-toggle="collapse"><h3 class="jobs">Partner marketing manager<span class="icon-arrow"></span></h3></a>
			<div id="partner-marketing" class="collapse">
				<p>Our marketing team is looking for an enthusiastic partner marketing manager who helps our partners market Nextcloud in their regions and become successful. You'd be responsible for onboarding our partners and planning and coordinating marketing efforts with our top partners. You would work with our team to organize events and webinars, create white papers and co-branded materials, send out newsletters or social media messages and more. We're looking for somebody with marketing and business development experience, able to work remote in an international team and willing to learn and try new things!</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Manage partner onboarding, materials and newsletter</li>
					<li>Discuss marketing activities with partners and help implement them</li>
					<li>Support PR activities with partners</li>
					<li>Track activities with partners</li>
					<li>Organize partner events</li>
					<li>Manage partner training and certification</li>
				</ul>

				<h3 class="section--paragraph__title">Requirements:</h3>
				<ul>
					<li>You either have a commercial apprenticeship or another relevant qualification in either sales or marketing and a strong commercial focus</li>
					<li>You have experience with wide range of marketing activities</li>
					<li>Proven ability to work remotely and be a strong teamplayer in a remote setting</li>
					<li>An independent, reliable and responsible way of working as well as a systematic and structured working style are required</li>
					<li>Enthusiasm, drive and motivation are essential: our partner program is still young and needs creativity and ideas</li>
					<li>German and English language skills are essential, other languages are a benefit</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building up a team. It is a wide-ranging job and we strive to provide the freedom and space to find the right approach! We look for somebody with some team lead experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>


			<a href="#devrelmgr" data-toggle="collapse"><h3 class="jobs">Developer relations manager<span class="icon-arrow"></span></h3></a>
			<div id="devrelmgr" class="collapse">
				<p>We are looking for a passionate community and developer relations manager who can work alongside our engineers with our wonderful Nextcloud community and partners. You will be working on our open source libraries, communicate with our developer community and partners through all our channels and help them resolve issues they encounter writing apps or contributing. You work on tutorials, update documentations, give practical tips and help and give talks at events.</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>Support, grow and empower our community and technical partners</li>
					<li>Represent Nextcloud in our community and our community in Nextcloud</li>
					<li>Monitor and respond to community requests for help</li>
					<li>Ensure resources for community contributors and developers are well maintained</li>
					<li>Work with our partners to ensure they can build the best possible apps and improvements</li>
					<li>Measure, track and improve community metrics</li>
				</ul>

				<h3 class="section--paragraph__title">Skills:</h3>
				<ul>
					<li>You love working with people and have good interpersonal skills</li>
					<li>You know open source and have experience in communities, maybe even Nextcloud</li>
					<li>You have been or are a developer and thus have the technical skills to understand and support developers</li>
					<li>You have a passion for and experience in communicating through various channels</li>
					<li>You can fix an occasional bug or help somebody else do so</li>
					<li>You have good English language skills</li>
				</ul>

				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
					<li>We have flexible office hours and most of our team works from home.</li>
					<li>We are flexible and open for part time work or somebody with a different background looking for a career switch! If you are unsure if you're a good fit - just apply and we'll figure it out together.</li>
				</ul>
				<p>There will be plenty of freedom and flexibility in defining the role and working conditions and room to advance within the company. We're a small company looking to change the world and you can change it with us. We are looking for somebody who wants to make a difference, who wants to be responsible for the results of building community. We look for somebody with some developer experience, but besides that, if you're willing to try new things, you are an ideal candidate! We especially encourage applications by people from underrepresented groups. Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>



			<a href="#saleseng" data-toggle="collapse"><h3 class="jobs">Sales Engineer/ Consultant<span class="icon-arrow"></span></h3></a>
			<div id="saleseng" class="collapse">
				<p>Technical sales engineers use their technical knowledge along with sales skills to provide advice and support on a range of products, for which a certain level of expertise is needed.</p>
				<p>You work close together with sales and engineering and assist colleagues with bids and tenders for new clients from a technical perspective, working on proof of concept deployments and answering questions.</p>
				<p>You like to work independently and self responsible on dedicated projects but like to also to exchange your knowledge with your colleagues.</p>
				<h3 class="section--paragraph__title">Responsibilities:</h3>
				<ul>
					<li>persuading clients that a product or service best satisfies their needs in terms of quality, price and delivery</li>
					<li>working closely together with sales on customer projects</li>
					<li>calculating client quotations</li>
					<li>providing pre-sales technical assistance and product education</li>
					<li>working on after-sales support services and providing technical backup as required</li>
					<li>arranging and carrying out product training</li>
					<li>support POC and Pilots at the customers together with support and engineering</li>
					<li>supporting sales and marketing activities by attending trade shows, conferences and other marketing events</li>
					<li>making technical presentations and demonstrating how a product meets client needs</li>
					<li>liaising with other members of the sales team and other technical experts</li>
					<li>helping in the design of custom-made products</li>
					<li>providing training and producing support material for other members of the sales team</li>
				</ul>
				<h3 class="section--paragraph__title">Required skills:</h3>
				<ul>
					<li>Solid technical background for infrastructure set-ups in medium and large organizations</li>
					<li>Sales skills</li>
					<li>Sound judgement and good business sense</li>
					<li>Organizational skills</li>
					<li>Teamworking capabilities</li>
					<li>Analytical and problem-solving skills</li>
					<li>Independence and self-reliance.</li>
					<li>Problem solving</li>
					<li>Product knowledge around open source technology</li>
					<li>General programming skills in PHP, HTML, CSS</li>
<!--					<li>Writing and speaking German and/or French language</li>-->
				</ul>
				<h3 class="section--paragraph__title">Benefits:</h3>
				<ul>
                    <li><strong>Remote first</strong> - You decide from where you work. Choose your home office or optional office hubs in Stuttgart and Berlin</li>
                    <li><strong>Flexibility guaranteed</strong> - You can flexibly schedule and plan your working hours and vacation days</li>
                    <li><strong>International team</strong> - Become part of an ambitious international team. We are shaping the world of tomorrow and firmly believe in innovation</li>
                    <li><strong>Learn and grow</strong> - With us, you can challenge yourself and grow steadily. We support you with regular feedback meetings and individual further training opportunities</li>
                    <li><strong>Technical excellence and ethics</strong> - We provide future-proof technology as the basis for successful, secure digitization. We always focus on the needs of our customers and protecting the privacy of our users</li>
				</ul>
				<p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
			</div>

	    <a href="#jsdev" data-toggle="collapse"><h3 class="jobs">Javascript Developer<span class="icon-arrow"></span></h3></a>
	    <div id="jsdev" class="collapse">
	        <p>We're looking for developers with experience in Javascript/front-end development to join our server team!</p>
	        <p>You would work with the engineering team to bring new features and improvements to the server user interface like our File management app or one of the many other applications like Calendar and Contacts, Announcements and more. You ideally have open source experience, know your way around git and Github and you live in the CET timezone.</p>
	        <h3 class="section--paragraph__title">Responsibilities:</h3>
	        <ul>
	            <li>Front end development (JS, PHP)</li>
	            <li>Cross platform testing</li>
	            <li>Quality assurance</li>
	        </ul>
	        <h3 class="section--paragraph__title">Required skills:</h3>
	        <ul>
	            <li>Deep technical experience with Javascript and perhaps a bit of PHP</li>
	            <li>WebRTC experience a plus</li>
	            <li>Teamworking capabilities</li>
	            <li>Independence and self-reliance.</li>
	            <li>Knowledge around open source technology</li>
	        </ul>
	        <h3 class="section--paragraph__title">Benefits:</h3>
	        <ul>
	            <li>A distributed, open team with a passion for working on and within the open source community</li>
	            <li>Developing a product which pushes the boundaries of technology and with a global user and contributor community</li>
	            <li>A competitive salary</li>
	            <li>Flexibility for a healthy work-life balance</li>
	            <li>Time for personal growth and education</li>
	        </ul>
	        <p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
	    </div>

			<a href="#phpdev" data-toggle="collapse"><h3 class="jobs">PHP back-end developer<span class="icon-arrow"></span></h3></a>
      <div id="phpdev" class="collapse">
          <p>We're looking for developers with experience in PHP back-end development to join our server team!</p>
          <p>You would work with the engineering team to bring new features and improvements to the server back-end like new authentication or storage mechanisms, audio/video chat and more. You ideally have open source experience, know your way around git and Github and you live in the CET timezone.</p>
          <h3 class="section--paragraph__title">Responsibilities:</h3>
          <ul>
              <li>Back end development (PHP)</li>
              <li>Database design</li>
              <li>Systems design</li>
              <li>Quality assurance</li>
          </ul>
          <h3 class="section--paragraph__title">Required skills:</h3>
          <ul>
              <li>Technical experience with PHP and bit of HTML, CSS, Javascript</li>
              <li>Teamworking capabilities</li>
              <li>Independence and self-reliance.</li>
              <li>Knowledge around open source technology</li>
          </ul>
          <h3 class="section--paragraph__title">Benefits:</h3>
          <ul>
              <li>A distributed, open team with a passion for working on and within the open source community</li>
              <li>Developing a product which pushes the boundaries of technology and with a global user and contributor community</li>
              <li>A competitive salary</li>
              <li>Flexibility for a healthy work-life balance</li>
              <li>Time for personal growth and education</li>
          </ul>
          <p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
      </div>

      <a href="#webrtcdev" data-toggle="collapse"><h3 class="jobs">WebRTC Developer<span class="icon-arrow"></span></h3></a>
      <div id="webrtcdev" class="collapse">
      	<p>We're looking for developers with experience in WebRTC development to join our server team!</p>
      	<p>You would work with the engineering team to bring new features and improvements to the server user interface like our File management app or one of the many other applications like Calendar and Contacts, Announcements and more. You ideally have open source experience, know your way around git and Github and you live in the CET timezone.</p>
	      <h3 class="section--paragraph__title">Responsibilities:</h3>
	      <ul>
		      <li>Front end development (JS, PHP, WebRTC)</li>
		      <li>Cross platform testing</li>
		      <li>Quality assurance</li>
	      </ul>
	      <h3 class="section--paragraph__title">Required skills:</h3>
	      <ul>
		      <li>Deep technical experience with WebRTC, Javascript and perhaps a bit of PHP</li>
		      <li>Teamworking capabilities</li>
		      <li>Independence and self-reliance.</li>
		      <li>Knowledge around open source technology</li>
	      </ul>
	      <h3 class="section--paragraph__title">Benefits:</h3>
	      <ul>
		      <li>A distributed, open team with a passion for working on and within the open source community</li>
		      <li>Developing a product which pushes the boundaries of technology and with a global user and contributor community</li>
		      <li>A competitive salary</li>
		      <li>Flexibility for a healthy work-life balance</li>
		      <li>Time for personal growth and education</li>
	      </ul>
	      <p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
      </div>

      <a href="#androiddev" data-toggle="collapse"><h3 class="jobs">Android App developer<span class="icon-arrow"></span></h3></a>
      <div id="androiddev" class="collapse">
          <p>We're looking for developers with experience in Android app development to join our client team!</p>
          <p>You would work with the engineering team to bring new features and improvements to the Android app around file handling, streaming, communication integration and more. You ideally have open source experience, know your way around git and Github and you live in the CET timezone.</p>
          <p>Responsibilities:</p>
          <ul>
              <li>Android development (JAVA, Kotlin)</li>
              <li>Software design</li>
              <li>UX/UI design</li>
              <li>Quality assurance</li>
          </ul>
          <p>Required skills:</p>
          <ul>
              <li>Technical experience with Java</li>
              <li>Teamworking capabilities</li>
              <li>Independence and self-reliance.</li>
              <li>Knowledge around open source technology</li>
          </ul>
          <p>Benefits:</p>
          <ul>
              <li>A distributed, open team with a passion for working on and within the open source community</li>
              <li>Developing a product which pushes the boundaries of technology and with a global user and contributor community</li>
              <li>A competitive salary</li>
              <li>Flexibility for a healthy work-life balance</li>
              <li>Time for personal growth and education</li>
          </ul>
          <p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
      </div>

			<a href="#iosdev" data-toggle="collapse"><h3 class="jobs">iOS App developer<span class="icon-arrow"></span></h3></a>
      <div id="iosdev" class="collapse">
          <p>We're looking for developers with experience in iOS app development to join our client team!</p>
          <p>You would work with the engineering team to bring new features and improvements to the iOS app around file handling, streaming, communication integration and more. You ideally have open source experience, know your way around git and Github and you live in the CET timezone.</p>
          <p>Responsibilities:</p>
          <ul>
              <li>iOS development (Objective-C/Swift)</li>
              <li>Software design</li>
              <li>UX/UI design</li>
              <li>Quality assurance</li>
          </ul>
          <p>Required skills:</p>
          <ul>
              <li>Technical experience with iOS development</li>
              <li>Teamworking capabilities</li>
              <li>Independence and self-reliance.</li>
              <li>Knowledge around open source technology</li>
          </ul>
          <p>Benefits:</p>
          <ul>
              <li>A distributed, open team with a passion for working on and within the open source community</li>
              <li>Developing a product which pushes the boundaries of technology and with a global user and contributor community</li>
              <li>A competitive salary</li>
              <li>Flexibility for a healthy work-life balance</li>
              <li>Time for personal growth and education</li>
          </ul>
          <p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
      </div>

      <!--<a href="#techwrite" data-toggle="collapse"><h3 class="jobs">Technical documentation writer<span class="icon-arrow"></span></h3></a>
      <div id="techwrite" class="collapse">
          <p>We're looking for a technical writer to join our server team!</p>
          <p>You would work with the engineering team to make sure Nextcloud features are well documented, ensure installation and handling of Nextcloud is described well and that people can find their way around in the product. You ideally have open source experience, know your way around git and Github and you live in the CET timezone.</p>
          <h3 class="section--paragraph__title">Responsibilities:</h3>
          <ul>
              <li>Taking ownership of the Nextcloud documentation</li>
              <li>Working with the Engineering team on the technical, developer and end user facing documentation</li>
              <li>Proactively identifying areas that need further documentation</li>
              <li>Editing, clarifying and proofreading documents written by others</li>
          </ul>
          <h3 class="section--paragraph__title">Required skills:</h3>
          <ul>
              <li>Confidence in writing and copy-editing English documentation</li>
              <li>Knowledge about Linux and basic PHP knowledge</li>
              <li>Proficient or native german knowledge</li>
              <li>Experience with the LAMP stack</li>
              <li>Teamworking capabilities</li>
              <li>Independence and self-reliance.</li>
              <li>Knowledge around open source technology</li>
          </ul>
          <h3 class="section--paragraph__title">Benefits:</h3>
          <ul>
              <li>A distributed, open team with a passion for working on and within the open source community</li>
              <li>Working on a product which pushes the boundaries of technology and with a global user and contributor community</li>
              <li>A competitive salary</li>
              <li>Flexibility for a healthy work-life balance</li>
              <li>Time for personal growth and education</li>
          </ul>
          <p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
      </div>-->
		<a href="#qa" data-toggle="collapse"><h3 class="jobs">QA engineer<span class="icon-arrow"></span></h3></a>
      <div id="qa" class="collapse">
          <p>We're looking for an engineer who can help us test and make Nextcloud rock stable!</p>
          <p>You would work with the engineering team to make sure Nextcloud is stable and well tested, developing and maintaining test plans, executing them and working with others to improve the automated and manual testing processes. You ideally have open source experience, know your way around git and Github and you live in the CET timezone.</p>
          <h3 class="section--paragraph__title">Responsibilities:</h3>
          <ul>
              <li>Taking ownership of the Nextcloud testing/QA process</li>
              <li>Working with the Engineering team on testing and guiding community testing</li>
              <li>Proactively identifying areas that need more/better testing</li>
              <li>Testing, improving automated and manual testing infrastructure</li>
          </ul>
          <h3 class="section--paragraph__title">Required skills:</h3>
          <ul>
              <li>Experience managing and executing QA plans</li>
              <li>Knowledge about Linux and basic PHP knowledge</li>
              <li>Experience with the LAMP stack</li>
              <li>Teamworking capabilities</li>
              <li>Independence and self-reliance.</li>
              <li>Knowledge around open source technology</li>
          </ul>
          <h3 class="section--paragraph__title">Benefits:</h3>
          <ul>
              <li>A distributed, open team with a passion for working on and within the open source community</li>
              <li>Working on a product which pushes the boundaries of technology and with a global user and contributor community</li>
              <li>A competitive salary</li>
              <li>Flexibility for a healthy work-life balance</li>
              <li>Time for personal growth and education</li>
          </ul>
          <p>We are looking for somebody with ambition and drive who would like to grow and learn. That means that if you don't fulfil the requirements yet but want to learn, apply! Contact us at <a href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> with your resume if you are interested in this role.</p>
      </div>
		<h3 class="jobs">And more</h3>
		<div>
			<p>We are always looking for talented new people in all areas of our business - from engineering and support to sales and marketing. We especially encourage applications by people from underrepresented groups to submit their resume! Contact us at <a class="hyperlink" href="mailto:jobs@nextcloud.com">jobs@nextcloud.com</a> and tell us how you can help!</p>
		</div>

	</div>

</section>