-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (128 loc) · 5.71 KB
/
index.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
layout: default
title: Home
slug: home
---
<div class="bigStripe home">
<h1 class="headline">Small Team, Big Impact</h1>
<p class="catchphrase">Large-Scale Web Development</p>
</div>
<div class="rainbow sheet">
<div class="rainbow-stripe blue"> </div>
<div class="rainbow-stripe green"> </div>
<div class="rainbow-stripe red"> </div>
<div class="rainbow-stripe orange"> </div>
</div>
<article class="article sheet">
<div class="columns">
<div class="column2">
<h4>Cargo Media</h4>
<p>
We’re a startup with primary offices in Basel, the second largest city in Switzerland. Our highly qualified team specializes in large scale web application development.
We work in a friendly, open and relaxed environment but also enjoy a challenge, and so we take on very demanding projects.
As we grow, we’re constantly looking for creative and dynamic talent.
If you’re interested, please review our
<a href="/jobs">current openings</a> and see if a position seems like a good fit for you.
</p>
</div>
<div class="column2">
<h4>Our Stack</h4>
<p>
We’re building state of the art web applications which offer interactive and responsive user experiences to millions of customers. Our technology stack is tailored to serve advanced applications at the highest speeds.
We combine powerful and proven open source technologies like <em>Elasticsearch</em>, <em>Redis</em>, <em>Memcached</em> or <em>Node.js</em>.
These and various other services are built-in and readily accessible through our <em>PHP application framework</em>.
We continuously put effort into high quality code and we automate everything we need to do more than once, be it deploying infrastructure configuration or linting and testing code.
</p>
</div>
</div>
</article>
<div class="headingStripe">
<div class="sheet">
<h2>Opensource <strong>Projects</strong></h2>
<span class="subtitle">Public Github Repos</span>
</div>
</div>
<article class="article article-github sheet">
<p>These are some of our public side-projects which helped us solve specific problems.</p>
<div class="project boxAlternative">
<a class="project-title" href="https://github.com/cargomedia/bipbip">bipbip</a> <span class="tags"><span class="tag">monitoring</span><span class="tag">ruby</span></span>
<p>Agent to collect server metrics (memcached, nginx, mysql etc) and send them to the CopperEgg RevealMetrics platform.</p>
</div>
<div class="project boxAlternative">
<a class="project-title" href="https://github.com/cargomedia/puppet-packages">puppet-packages</a> <span class="tags"><span class="tag">devops</span> <span class="tag">puppet</span></span>
<p>Reusable puppet modules for Debian.</p>
</div>
<div class="project boxAlternative">
<a class="project-title" href="https://github.com/cargomedia/socket-redis">socket-redis</a> <span class="tags"><span class="tag">websockets</span> <span class="tag">node.js</span> <span class="tag">redis</span></span>
<p>WebSocket pub/sub server and client (with SockJS), exposing an API over Redis.</p>
</div>
<div class="project boxAlternative">
<a class="project-title" href="https://github.com/cargomedia/vagrant-boxes">vagrant-boxes</a> <span class="tags"><span class="tag">vagrant</span> <span class="tag">packer</span></span>
<p>Generate Vagrant boxes with packer.</p>
</div>
<div class="project boxAlternative">
<a class="project-title" href="https://github.com/cargomedia/github-issues">github-issues</a> <span class="tags"><span class="tag">git</span> <span class="tag">workflow</span></span>
<p>gi is a command line tool to CRUD github issues. It maps every issue to a branch issue-'issue-number'.</p>
</div>
</article>
<div class="headingStripe">
<div class="sheet">
<h2>Our <strong>Team</strong></h2>
<span class="subtitle">makes the magic happen</span>
</div>
</div>
<article class="article sheet">
<p>While the majority of our team works from our lovely office in Switzerland, some us work from Australia or Poland. Without further ado, please meet the pack:</p>
<div class="columns">
{% for member in site.data.members %}
<div class="column3">
<div class="businessCard">
<div class="thumb {{ member.animal }}"></div>
<div class="content">
<h4 class="name">{{ member.name }}</h4>
<p class="mission">{{ member.mission }}</p>
{% if member.contact && member.link %}
<p class="contact nowrap {{ member.contact | downcase }}"><a href="{{ member.link }}" title="{{ member.contact }}">{{ member.contact }}</a></p>
{% else %}
<p class="contact"> </p>
{% endif %}
</div>
</div>
</div>
{% endfor %}
<div class="column3">
<a href="/jobs" class="businessCard empty">
<div class="thumb empty"></div>
<div class="content">
<h4 class="name">You ?</h4>
<p class="mission">Developer</p>
<p class="apply">Click to apply!</p>
</div>
</a>
</div>
</div>
</article>
<div class="headingStripe">
<div class="sheet">
<h2>Company <strong>Blog</strong></h2>
<span class="subtitle">Insights from our products, technology and company culture</span>
</div>
</div>
<article class="article article-blogPreview sheet">
<ul class="posts columns">
{% for post in site.posts limit:6 %}
<li class="post column2">
{% if post.date %}<time class="post-timestamp">{{ post.date | date_to_string }}</time>{% endif %}
<h3 class="post-title nowrap"><a href="{{ post.url }}" class="post-title-link">{{ post.title }}</a></h3>
{% if post.tags %}
<p class="post-tags tags nowrap">
{% for tag in post.tags %}
<span class="tag">{{ tag }}</span>
{% endfor %}
</p>
{% endif %}
</li>
{% endfor %}
</ul>
<a class="post-more" href="/blog"><button>View All</button></a>
</article>