-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 1.96 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
title: "Frugal Banking"
description: "TiRKiO steht für modernes Neobanking rund ums Zahlen, Sparen, Anlegen und Vorsorgen. Frugal Banking Finanzinformationen für Gen Z und Frugalisten jeden Alters."
layout: default
exclude: true
---
<!-- Home Intro -->
{% if page.url == "/" %}
<section class="container my-3 card">
<div class="row align-items-center">
<div class="col-md-7 p-3">
<h1>Frugal Banking</h1>
<p>
TiRKiO steht für modernes Neobanking und umfassendes Finanzwissen, das
dich dabei unterstützt, dein Leben finanziell nachhaltig und ausgewogen
zu gestalten. Entdecke wertvolle Informationen zu den Themen Zahlen,
Sparen, Anlegen und Vorsorgen – die moderne Informationsseite für Gen Z und
Frugalisten jeden Alters.
</p>
<p>TiRKiO – Smarter leben, klüger wirtschaften.</p>
<a href="{{site.baseurl}}/about" class="btn btn-primary btn-lg">About</a>
</div>
<div class="col-md-5 p-3">
<img
class="img-fluid"
src="{{site.baseurl}}/assets/images/intro.webp"
alt="tirkio.com"
/>
</div>
</div>
</section>
<!-- Featured Posts -->
{% endif %} {% assign featured_posts = site.posts | where: "featured", true %}
{% if featured_posts.size > 0 %}
<section class="container my-3">
<div class="row">
{% for post in featured_posts %}
<div class="col-md-4">{% include postbox.html %}</div>
{% endfor %}
</div>
</section>
{% endif %}
<!-- Posts List with Sidebar -->
<section class="container my-3">
<div class="row">
<!-- Main Content -->
<div class="col-lg-8">
<div class="row">
{% for post in paginator.posts %} {% unless post.featured == true %}
<div class="col-md-6 mb-4">{% include postbox.html %}</div>
{% endunless %} {% endfor %}
</div>
<!-- Pagination -->
{% include pagination.html %}
</div>
<!-- Sidebar -->
<div class="col-lg-4">{% include sidebar.html %}</div>
</div>
</section>