robur.coop/templates/about_us.html

117 lines
5.3 KiB
HTML

<div class="about-us-page">
<div class="section-header intro-about-us">
<div class="container-fluid dark">
<div class="container intro-about-us">
<div class="col-md-12">
<h2>About us</h2>
<span class="manchet">
<p>{{ robur.description }}</p>
</span>
</div>
<div class="button-pair">
<button class="read-more"><a href="#">Read more</a></button>
<button class="contact-us"><a href="#contact">Contact us</a></button>
</div>
</div>
</div>
</div>
<div class="section-1">
<div class="container-fluid p0">
<div class="container">
<div class="col-md-12">
<h2>The current team</h2>
</div>
<div class="tekst-element">
{% for row in batch(2, team.current_members, fill_with="member") %}
<div class="col-md-12 p0">
{% for member in row %}
<div class="member-description col-md-6">
<p class="underoverskrift">{{ member.name }}</p>
{%- autoescape false -%}
{{ member.description }}
{% endautoescape -%}
</div>
{% endfor %}
</div>
{% endfor %}
</div>
<div class="col-md-12">
<h2>Former members</h2>
</div>
<div class="tekst-element">
<div class="col-md-12 p0">
{% for row in batch(2, team.former_members, fill_with="member") %}
<div class="col-md-12 p0">
{% for member in row %}
<div class="col-md-6">
<p class="underoverskrift">{{ member.name }}</p>
{%- autoescape false -%}
{{ member.description }}
{% endautoescape -%}
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
<img src="{{ root }}/images/about_us_graphics.png" alt="pentagon_graphics" class="pentagon">
</div>
</div>
<div class="section-2">
<div class="container-fluid">
<div class="container flex">
<div class="col-md-6 column-1">
<h2>Retreats</h2>
<p>Twice a year the Robur team meet with others from the OCaml and MirageOS community at a week long hack retreat in Marrakesh, Morocco.</p>
<p>We use these times to discuss and learn about new developments in the MirageOS ecosystem and meet in person about our Robur projects. And of course we have fun whilst we are at it!</p>
<p>The retreats are held in a hostel in the center of the city, which we wholly rent out for the period, with food provided. If you are interested in participating in the next retreat please see the MirageOS site for more details and sign-up method.</p>
<div class="button-bottom">
<button class="mirage-btn"><a href="static.php">Go to MirageOS</a></button>
</div>
</div>
<div class="col-md-6 column-2">
<h2>Network</h2>
<img src="{{ root }}/images/center_for_cultivation_of_technology.png" alt="center-for-cultivation-of-technology">
<p class="underoverskrift"><b>THE CENTER FOR TECHNICAL CULTIVATION</b></p>
<p>The Center For Technical Cultivation is a "back-end provider" for the open source community. They work with Robur to assist us in our financial processes and administration.</p>
<blockquote>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum
</blockquote>
<div class="button-bottom">
<button class="collab-btn"><a href="network.php">See all collaborations and grant Funders</a></button>
</div>
</div>
</div>
</div>
</div>
<div class="section-3">
<div class="container-fluid">
<div class="container">
<div class="col-md-12">
<h2>Funding</h2>
<p class="manchet">At Robur our focus is on the software we develop. We are passionate about our work and believe in the importance of creating and maintaining secure digital infrastructure.</p>
</div>
<div class="col-md-12 columns-2">
<p>We get our funding through three avenues: grants for particular open-source projects, contracts for specific work including development and auditing, and public donations that help allow us to continue the work that isn't otherwise funded.</p>
<p>We spend most of our funding on salaries, ensuring Robur keeps developing the software we think is important. We do not spend money on fancy parties or first class business trips. Our general breakdown of spending per year is:</p>
<ul>
<li>83% on salaries</li>
<li>7% on necessary travel</li>
<li>10% on inecitable administrative costs</li>
</ul>
<p>If you are considering donating to us, hiring us, or giving us a grant you can be assured your money will be well spent on the actual end result of delivering the robust and secure digital infrastructure we strive for.</p>
</div>
<div class="col-md-12 button-pair">
<button class="contact-btn"><a href="#contact">Contact us</a></button>
<button class="donate-btn"><a href="donate.php">Donate now</a></button>
</div>
</div>
</div>
</div>
</div>