-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 1.14 KB
/
index.html
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
---
layout: default
title: Ihre Hilfskraftverwaltung
---
<div style="border: 1px solid #bbb; border-radius:12px; background: #eee; padding-left: 10px;">
<p><strong>aidGer</strong> ist eine platformunabhängige Anwendung zur Verwaltung und Organisation von Hilfskräften und Budgets.</p>
<p>
<ul>
<li></li>
<li>Einfache Generierung von (anpassbaren) <strong>Berichten</strong></li>
<li>Unterstützung beim <strong>Controlling</strong></li>
<li>Verwaltung von <strong>Vorgängen</strong></li>
</ul>
</p>
<p><a href="features.html" class="light">Mehr Features</a> <a href="download.html" class="light">Download</a></p>
</div>
<h1>News</h1>
{% for post in site.categories["news"] limit:5 %}
<div class="news">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<div class="date">gepostet am {{ post.date | date: '%d.%m.%Y' }}</div>
<div class="excerpt">{{ post.content | html_truncatewords: 50 }}<br /><a href="{{ post.url }}">Mehr</a></div>
</div>
{% endfor %}
<div id="archive"><a href="#" class="light" style="color: #eee;">Zum Archiv</a></div>