mirror of
https://github.com/safing/web
synced 2025-04-12 23:19:09 +00:00
Move funding and loans to yml
much easier to maintain and update the numbers
This commit is contained in:
parent
da1cf12eca
commit
ea9978599e
2 changed files with 140 additions and 47 deletions
72
_data/finances.yml
Normal file
72
_data/finances.yml
Normal file
|
@ -0,0 +1,72 @@
|
|||
source:
|
||||
ffg:
|
||||
timespan: "2019-2021"
|
||||
years:
|
||||
- year: 2021
|
||||
items:
|
||||
- type: funding
|
||||
amount: "81.800"
|
||||
status: open
|
||||
- type: loan
|
||||
amount: "77.300"
|
||||
status: open
|
||||
- year: 2020
|
||||
items:
|
||||
- type: funding
|
||||
amount: "146.541"
|
||||
status: completed
|
||||
- type: loan
|
||||
amount: "138.445"
|
||||
status: completed
|
||||
- year: 2019
|
||||
items:
|
||||
- type: funding
|
||||
amount: "82.800"
|
||||
status: completed
|
||||
- type: loan
|
||||
amount: "78.200"
|
||||
status: completed
|
||||
netidee:
|
||||
timespan: "2017-2021"
|
||||
years:
|
||||
- year: 2021
|
||||
items:
|
||||
- type: funding
|
||||
amount: "12.500"
|
||||
status: open
|
||||
- year: 2021
|
||||
items:
|
||||
- type: funding
|
||||
amount: "12.500"
|
||||
status: completed
|
||||
- year: 2020
|
||||
items:
|
||||
- type: funding
|
||||
amount: "20.012"
|
||||
status: completed
|
||||
- year: 2019
|
||||
items:
|
||||
- type: funding
|
||||
amount: "30.048"
|
||||
status: completed
|
||||
- year: 2017
|
||||
items:
|
||||
- type: funding
|
||||
amount: "47.779"
|
||||
status: completed
|
||||
kickstarter:
|
||||
timespan: "February 2020"
|
||||
years:
|
||||
- year: 2020
|
||||
items:
|
||||
- type: funding
|
||||
amount: "11.755"
|
||||
status: completed
|
||||
esa:
|
||||
timespan: "2018-2020"
|
||||
years:
|
||||
- year: 2019
|
||||
items:
|
||||
- type: funding
|
||||
amount: "40.000"
|
||||
status: completed
|
|
@ -92,7 +92,7 @@ redirect_from:
|
|||
<div class="block transform hover:scale-105 duration-150 ease-in-out hover p-8 rounded-lg">
|
||||
<div>
|
||||
<h1 class="text-2xl uppercase transition hover:opacity-55 ease-in-out duration-150">FFG</h1>
|
||||
<span class="pt-4 opacity-55 font-extrabold">2019-2021</span>
|
||||
<span class="pt-4 opacity-55 font-extrabold">{{ site.data.finances.source.ffg.timespan }}</span>
|
||||
<p class="pt-4 opacity-75">
|
||||
The FFG is the national funding institution for Research & Development of Austria. Their goal is to strengthen innovation and the economy.
|
||||
</p>
|
||||
|
@ -100,61 +100,58 @@ redirect_from:
|
|||
We got accepted into the FFG Basisprogramm in 2019 continuing until 2021. The included funding and loan enabled us to hire our first employees and further progress our products.
|
||||
</p>
|
||||
</div>
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">2021</span>
|
||||
<li class="opacity-75 font-medium"><span class="font-extrabold">81.800 funding</span> <small>held out in prospect</small></li>
|
||||
<li class="opacity-75 font-medium"><span class="font-extrabold">77.300€ loan</span> <small>held out in prospect</small></li>
|
||||
</ul>
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">2020</span>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">146.541€ funding</span></li>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">138.445€ loan</span></li>
|
||||
</ul>
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">2019</span>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">82.800€ funding</span></li>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">78.200€ loan</span></li>
|
||||
</ul>
|
||||
{% for year in site.data.finances.source.ffg.years %}
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">{{ year.year }}</span>
|
||||
{% for item in year.items %}
|
||||
<li class="opacity-75 font-medium">
|
||||
{% if item.status == "completed" %}
|
||||
Received
|
||||
{% endif %}
|
||||
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
|
||||
{% if item.status == "open" %}
|
||||
<small>held out in prospect</small>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</li>
|
||||
<li class="text-center md:text-left pt-16 md:pt-0">
|
||||
<div class="block transform hover:scale-105 duration-150 ease-in-out hover p-8 rounded-lg">
|
||||
<div>
|
||||
<h1 class="text-2xl uppercase transition hover:opacity-55 ease-in-out duration-150">Netidee</h1>
|
||||
<span class="pt-4 opacity-55 font-extrabold">2017-2021</span>
|
||||
<span class="pt-4 opacity-55 font-extrabold">{{ site.data.finances.source.netidee.timespan }}</span>
|
||||
<p class="pt-4 opacity-75">
|
||||
Netidee funding from 2017 helped us to kickstart all this.
|
||||
In late 2019 and 2020, they granted follow-up fundings for the years
|
||||
2019/20 and 2020/21 respectively.
|
||||
</p>
|
||||
</div>
|
||||
<ul class="text-sm pt-6">
|
||||
<span class="font-medium opacity-55">2021</span>
|
||||
<li class="opacity-75 font-medium"><span class="font-extrabold">12.500€ funding</span> <small>held out in prospect</small></li>
|
||||
</ul>
|
||||
<ul class="text-sm pt-6">
|
||||
<span class="font-medium opacity-55">2021</span>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">12.500€ funding</span></li>
|
||||
</ul>
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">2020</span>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">20.012€ funding</span></li>
|
||||
</ul>
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">2019</span>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">30.048€ funding</span></li>
|
||||
</ul>
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">2017</span>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">47.799€ funding</span></li>
|
||||
</ul>
|
||||
{% for year in site.data.finances.source.netidee.years %}
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">{{ year.year }}</span>
|
||||
{% for item in year.items %}
|
||||
<li class="opacity-75 font-medium">
|
||||
{% if item.status == "completed" %}
|
||||
Received
|
||||
{% endif %}
|
||||
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
|
||||
{% if item.status == "open" %}
|
||||
<small>held out in prospect</small>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</li>
|
||||
<li class="text-center md:text-left pt-16 md:pt-0">
|
||||
<div class="block transform hover:scale-105 duration-150 ease-in-out hover p-8 rounded-lg">
|
||||
<div>
|
||||
<h1 class="text-2xl uppercase transition hover:opacity-55 ease-in-out duration-150">Kickstarter</h1>
|
||||
<span class="pt-4 opacity-55 font-extrabold">February 2020</span>
|
||||
<span class="pt-4 opacity-55 font-extrabold">{{ site.data.finances.source.kickstarter.timespan }}</span>
|
||||
<p class="pt-4 opacity-75">
|
||||
Through our
|
||||
<a href="{{ site.kickstarter_url }}">
|
||||
|
@ -163,17 +160,29 @@ redirect_from:
|
|||
we received our first supporters who also backed us financially. Thanks to every one of you for giving us your trust and money even before we had any software to show for!
|
||||
</p>
|
||||
</div>
|
||||
<ul class="text-sm pt-6">
|
||||
<span class="font-medium opacity-55">2020</span>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">11.755€ funding</span></li>
|
||||
</ul>
|
||||
{% for year in site.data.finances.source.kickstarter.years %}
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">{{ year.year }}</span>
|
||||
{% for item in year.items %}
|
||||
<li class="opacity-75 font-medium">
|
||||
{% if item.status == "completed" %}
|
||||
Received
|
||||
{% endif %}
|
||||
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
|
||||
{% if item.status == "open" %}
|
||||
<small>held out in prospect</small>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</li>
|
||||
<li class="text-center md:text-left pt-16 md:pt-0">
|
||||
<div class="block transform hover:scale-105 duration-150 ease-in-out hover p-8 rounded-lg">
|
||||
<div>
|
||||
<h1 class="text-2xl uppercase transition hover:opacity-55 ease-in-out duration">ESA-BIC Austria</h1>
|
||||
<span class="pt-4 opacity-55 font-extrabold">2018-2020</span>
|
||||
<span class="pt-4 opacity-55 font-extrabold">{{ site.data.finances.source.esa.timespan }}</span>
|
||||
<p class="pt-4 opacity-75">
|
||||
Safing ICS Technologies GmbH is participating in the
|
||||
<a href="{{ site.esa_bic_url }}">
|
||||
|
@ -183,10 +192,22 @@ redirect_from:
|
|||
and the Lower Austrian State as the contractual partners.
|
||||
</p>
|
||||
</div>
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">2019</span>
|
||||
<li class="opacity-75 font-medium">Received <span class="font-extrabold">40.000€ funding</span></li>
|
||||
</ul>
|
||||
{% for year in site.data.finances.source.esa.years %}
|
||||
<ul class="text-sm pt-4">
|
||||
<span class="font-medium opacity-55">{{ year.year }}</span>
|
||||
{% for item in year.items %}
|
||||
<li class="opacity-75 font-medium">
|
||||
{% if item.status == "completed" %}
|
||||
Received
|
||||
{% endif %}
|
||||
<span class="font-extrabold">{{ item.amount }}€ {{ item.type }}</span>
|
||||
{% if item.status == "open" %}
|
||||
<small>held out in prospect</small>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</li>
|
||||
<li class="text-center md:text-left pt-16 md:pt-0">
|
||||
|
|
Loading…
Add table
Reference in a new issue