forked from samuel-p/sp-codes.de
added services template
updated .drone.yml
This commit is contained in:
parent
1d70658e41
commit
fcfed7842e
16 changed files with 340 additions and 62 deletions
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
layout: base.njk
|
||||
key: about
|
||||
title: About
|
||||
eleventyNavigation:
|
||||
key: about
|
||||
title: About
|
||||
order: 1
|
||||
---
|
||||
<h1>About me</h1>
|
|
@ -5,6 +5,27 @@ title: Services
|
|||
eleventyNavigation:
|
||||
key: services
|
||||
title: Services
|
||||
icon: server
|
||||
order: 2
|
||||
---
|
||||
<h1>Services</h1>
|
||||
<div>
|
||||
<a class="float-right mt-3" href="https://status.sp-codes.de"><i class="fas fa-heartbeat mr-2"></i>Status</a>
|
||||
<h1>Services</h1>
|
||||
<p>In my spare time I provide various open source services for free. Here you can find an overview of the individual
|
||||
services and a short description for each of them. All services are hosted in Germany. Feel free to use it.</p>
|
||||
<div class="row">
|
||||
{%- for service in services %}
|
||||
<div class="col-12 col-md-6 col-lg-4 p-3">
|
||||
<div class="service">
|
||||
<a class="link" href="/{{locale}}/services/{{service.id}}"></a>
|
||||
<div class="inner">
|
||||
<i class="{{service.icon}} fa-4x"></i>
|
||||
<h2 class="mt-2">{{service.name}}{% if service.url %} <a href="{{service.url}}"><i
|
||||
class="fas fa-external-link-alt"></i></a>{% endif %}</h2>
|
||||
<div>{{service.summary[locale]}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{%- endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue