-
Notifications
You must be signed in to change notification settings - Fork 47
/
contributor.php
40 lines (34 loc) · 1.32 KB
/
contributor.php
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
<?php
$currentpage = "contributor.php";
include("header.php");
?>
<main id="main" class="container-fluid whitelinks">
<div class="download-notes text-center">
<h2 class="downloads-notes-title">
<?php echo _('Thank you for your contribution!'); ?>
</h2>
<p>
<?php echo _('Thank you for supporting FreeCAD!
Whether you donated a little or a lot, all efforts contribute to
make FreeCAD development go further and faster.'); ?>
</p>
<p>
<?php echo _('If you have made a recurring donation above 25 USD/EUR
per month (or a one-time donation above 300 USD/EUR), you are
eligible to become a bronze, silver or gold sponsor and can have
your name, company name or logo displayed on the FreeCAD website,
depending on the tier you fit in. If you have not yet informed us of
the name you wish to see displayed, please reach to us at'); ?>
<a href="mailto:fpa@freecad.org">fpa@freecad.org</a>.
</p>
<p>
<?php echo _('Thanks!'); ?>
</p>
<p>
<?php echo _('The FreeCAD project association'); ?>
</p>
</div>
</main>
<?php
include 'footer.php';
?>