webseite/templates/about_page.html

59 lines
2.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "header_slim.html" %}
{%- block title -%}{{ this.title }}{%- endblock -%}
{%- block meta_description -%}
{%- if this.meta_description is defined and this.meta_description != "" -%}
{{ this.meta_description }}
{%- else -%}
Werkkooperative der Technikfreundinnen eG
{%- endif -%}
{%- endblock -%}
{% block body %}
<section class="content">
<div class="content__box">
<div class="services_box">
<h1>{{ this.title }}</h1>
<div class="services_card_box">
<div class="services_card -odd">
<div class="services_card__image_box">
<img src="{{'/images/icon_gears_bubble.svg'|asseturl }}" alt="" aria-hidden="true">
</div>
<div class="services_card__text_box">
<h2>Beratung</h2>
<p>
Profitieren Sie vom breit aufgestellten IT-Know-how, vom Erfahrungsaustausch und der Vernetzung unserer Mitglieder, Expertinnen und Experten in der Genossenschaft. Die WTF Kooperative ist Ihr kompetenter Ansprechpartner.
</p>
</div>
</div>
<div class="services_card -even">
<div class="services_card__image_box">
<img src="{{'/images/icon_processor.svg'|asseturl }}" alt="" aria-hidden="true">
</div>
<div class="services_card__text_box">
<h2>Entwicklung</h2>
<p>
Wir realisieren Ihre Projekte egal ob Web-Applikation, mobile App oder hardwarenahe Programmierung. Auch können wir Sie bei Bedarf hinsichtlich passender Wirtschaftsförderprogramme beraten.
</p>
</div>
</div>
<div class="services_card -odd">
<div class="services_card__image_box">
<img src="{{'/images/icon_connected_servers.svg'|asseturl }}" alt="" aria-hidden="true">
</div>
<div class="services_card__text_box">
<h2>Betrieb</h2>
<p>
Nach dem Projekt lassen wir Sie nicht mit dem Ergebnis im Regen stehen, sondern bieten Ihnen auch über das Projekt hinaus Services für den Betrieb des abgeschlossenen Projekts und die Administration der Infrastruktur.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
{% endblock %}