LEFT | RIGHT |
(no file at all) | |
| 1 title=About Us |
| 2 description=Founded in 2011, eyeo is the company behind Adblock Plus, Adblock Br
owser and Flattr. We build products that millions of people use everyday to impr
ove their online experience. |
| 3 |
| 4 <head> |
| 5 <? include index/style ?> |
| 6 <script type="application/ld+json"> |
| 7 { |
| 8 "@context": "http://schema.org", |
| 9 "@type": "Organization", |
| 10 "url": "{{ config.get("general", "siteurl") }}", |
| 11 "logo": "{{ config.get("general", "siteurl") }}/images/logo-3x.png" |
| 12 } |
| 13 </script> |
| 14 </head> |
| 15 |
| 16 <div id="home-image-container"> |
| 17 <img alt="eyeo office" src="/images/eyeo-home-1x.png" /> |
| 18 </div> |
| 19 |
| 20 <div id="who-we-are" class="content-block columns-container two-columns"> |
| 21 <div class="column" markdown="1"> |
| 22 <? include index/whoweare ?> |
| 23 </div> |
| 24 |
| 25 <div class="column"> |
| 26 <? include index/mission ?> |
| 27 </div> |
| 28 </div> |
| 29 |
| 30 <div id="our-work"> |
| 31 <div class="content-block"> |
| 32 <h1 class="heading centered"><span>What we are working on:</span></h1> |
| 33 |
| 34 <div class="columns-container four-columns"> |
| 35 <div class="column"> |
| 36 <? include index/ourwork-betterads ?> |
| 37 </div> |
| 38 |
| 39 <div class="column"> |
| 40 <? include index/ourwork-privacy ?> |
| 41 </div> |
| 42 |
| 43 <div class="column"> |
| 44 <? include index/ourwork-security ?> |
| 45 </div> |
| 46 |
| 47 <div class="column"> |
| 48 <? include index/ourwork-opensource ?> |
| 49 </div> |
| 50 </div> |
| 51 </div> |
| 52 </div> |
| 53 |
| 54 <div id="media" class="content-block"> |
| 55 <? include index/media ?> |
| 56 </div> |
LEFT | RIGHT |