Skip to content

Latest commit

 

History

History
69 lines (56 loc) · 2.24 KB

index.md

File metadata and controls

69 lines (56 loc) · 2.24 KB
layout
home

Digitale Tools für Cevi-Lager und Kurse

Wir entwickeln innovative Webtools für Cevi / Pfadi / Jubla, um die Arbeit in der Abteilung, in Lagern oder Kursen zu vereinfachen.

Auf dieser Seite möchten wir dir eine Übersicht über bereits produktiv einsetzbare Tools und unsere Projekte für zukünftige nützliche Tools bieten.

Die Entwicklung unserer Tools findest du auf Github. Gerne darfst du dich an der Entwicklung eines bestehenden Tools beteiligen oder dein eigenes Projekt starten. Kontaktiere uns dazu via Github.

News

    {% for post in site.posts %}
    {% if post.categories contains 'release' %}
      <li>
        {{ post.date | date: "%d.%m.%Y"}} <a href="{{ post.url }}">{{ post.title }}</a>
      </li>
    
    {% endif %}
    

    {% endfor %}

Tools

{% for post in site.posts %} {% if post.categories contains 'tool' %}
{{ post.title }}
{% if post.categories contains 'tool-ready-to-use' %} Bereit zum Einsatz {% endif %} {% if post.categories contains 'tool-in-development' %} In Entwicklung {% endif %} {% if post.categories contains 'tool-diy' %} Selber erstellen {% endif %}
    <h3 class="card-title">{{ post.title }}</h3>
  
    <p class="card-text">{{ post.excerpt }}</p>
    <a class="deployment" href="{{ post.url }}">Mehr erfahren...</a><br/>

    {% if post.deplyoment %}
      <a class="deployment" href="{{ post.deplyoment }}" target="_blank">
        <img class="svg-icon" src="{{ '/assets/link-solid.svg' | relative_url }}"> {{ post.deplyoment }}
      </a>
    {% endif %}
  </div>
</div>
{% endif %} {% endfor %}