Phase in more projects
This commit is contained in:
parent
d5d72501fd
commit
6ad91b2b83
10 changed files with 37 additions and 0 deletions
BIN
assets/u/image/cards/datacenterlight.jpg
Normal file
BIN
assets/u/image/cards/datacenterlight.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.9 KiB |
BIN
assets/u/image/cards/digitalglarus.png
Normal file
BIN
assets/u/image/cards/digitalglarus.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
BIN
assets/u/image/cards/open-infrastructure.jpg
Normal file
BIN
assets/u/image/cards/open-infrastructure.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
|
@ -2,6 +2,8 @@ title: Data Center Light
|
||||||
---
|
---
|
||||||
subtitle: A clean and sustainable data center
|
subtitle: A clean and sustainable data center
|
||||||
---
|
---
|
||||||
|
image: /u/image/cards/datacenterlight.jpg
|
||||||
|
---
|
||||||
content:
|
content:
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
title: Digital Glarus
|
title: Digital Glarus
|
||||||
---
|
---
|
||||||
|
image: /u/image/cards/digitalglarus.png
|
||||||
|
---
|
||||||
subtitle: Using digitalisation for the good
|
subtitle: Using digitalisation for the good
|
||||||
---
|
---
|
||||||
content:
|
content:
|
||||||
|
|
|
@ -2,6 +2,8 @@ title: IPv6.Chat
|
||||||
---
|
---
|
||||||
subtitle: Let's talk about IPv6
|
subtitle: Let's talk about IPv6
|
||||||
---
|
---
|
||||||
|
image: https://ungleich.ch/media/filer_public/c8/86/c8867297-4573-464b-ae60-0f38117626ad/ipv6chat.jpg
|
||||||
|
---
|
||||||
content:
|
content:
|
||||||
|
|
||||||
## IPv6 chat
|
## IPv6 chat
|
||||||
|
|
19
content/u/projects/open-infrastructure/contents.lr
Normal file
19
content/u/projects/open-infrastructure/contents.lr
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
title: Open Infrastructure
|
||||||
|
---
|
||||||
|
subtitle: Transparency everywhere
|
||||||
|
---
|
||||||
|
image: /u/image/cards/open-infrastructure.jpg
|
||||||
|
---
|
||||||
|
content:
|
||||||
|
|
||||||
|
Next to our [Open Source](../open-source/) efforts, we also believe
|
||||||
|
that what you run your services on, should also be open and
|
||||||
|
understandable.
|
||||||
|
|
||||||
|
For this reason we created the Open Infrastructure project that
|
||||||
|
describes our infrastructure in detail and allows you to rebuild it,
|
||||||
|
if you wanted to.
|
||||||
|
|
||||||
|
You can read more about it in [our blog post about Open
|
||||||
|
Infrastructure](https://ungleich.ch/en-us/cms/blog/2019/04/26/ungleich-open-infrastructure-project/)
|
||||||
|
or see the current documentation in [our redmine Open Infrastructure project](https://redmine.ungleich.ch/projects/open-infrastructure).
|
|
@ -13,3 +13,7 @@ type = string
|
||||||
[fields.content]
|
[fields.content]
|
||||||
label = Content
|
label = Content
|
||||||
type = markdown
|
type = markdown
|
||||||
|
|
||||||
|
[fields.image]
|
||||||
|
label = Image
|
||||||
|
type = url
|
||||||
|
|
|
@ -11,6 +11,10 @@ type = string
|
||||||
label = Subtitle
|
label = Subtitle
|
||||||
type = string
|
type = string
|
||||||
|
|
||||||
|
[fields.image]
|
||||||
|
label = Image
|
||||||
|
type = url
|
||||||
|
|
||||||
[children]
|
[children]
|
||||||
model = page-2020
|
model = page-2020
|
||||||
order_by = title
|
order_by = title
|
|
@ -11,6 +11,10 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="col-md-4 mb-3">
|
<div class="col-md-4 mb-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
{% if childpage.image %}
|
||||||
|
<img class="card-img-top" src="{{ childpage.image }}"
|
||||||
|
alt="childpage.title">
|
||||||
|
{% endif %}
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h5 class="card-title">{{ childpage.title }}</h5>
|
<h5 class="card-title">{{ childpage.title }}</h5>
|
||||||
<p class="card-text">{{ childpage.subtitle }}</p>
|
<p class="card-text">{{ childpage.subtitle }}</p>
|
||||||
|
|
Loading…
Reference in a new issue