-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (113 loc) · 4.37 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
layout: page
title: Hi, I'm Gisela!
subtitle:
use-site-title: true
bigimg: ["/images/capas/por-do-sol.jpg",
"/images/capas/chile-montanhas.jpg" : "Pumamarca, Chile - 2019",
"/images/capas/chuveiro.jpeg" : "Fumaça por baixo, Vale do Capão - 2022",
"/images/capas/pico-do-papagaio.jpg" : "Pico do Papagayo, Ilha Grande, RJ - 2021",
"/images/capas/mirante-janela-chapada-veadeiros.jpg" : "Chapada dos veadeiros - 2021",
"/images/capas/vale-da-lua.jpg" : "Chapada dos veadeiros - 2021",
"/images/capas/gavea.jpg" : "RJ - 2021",
"/images/capas/salinas.jpg" : "Salinas grandes - 2019",
"/images/capas/salinas_nuvem.jpg" : "Salinas grandes - 2019",
"/images/capas/salinas-azul.jpg" : "Salinas grandes - 2019",
"/images/capas/chile-vale-da-lua.jpg" : "San Pedro de Atacama - 2019",
"/images/capas/chile-lhamas.jpg" : "San Pedro de Atacama - 2019",
"/images/capas/IMG_20220409_145720_1.jpg": "Fumaça, BA, Brazil - 2022",
"/images/capas/bahia-nascer-do-sol.jpg" : "Bahia - 2019" ]
---
<p>
<br>
This is Gisela from Brazil🇧🇷!<br>
🧑💻 Check my github portfolio!
<br><br>
📚I am an avid reader, check my book recomendation page. If you are also into books and would like to disscuss email me!
<br><br>
🇩🇪 I like languages and currently into German.
I am enthusiast about ANKI desktop app for learning languages, I wrote about it on my blog page!
<br><br>
🌎 On the hobby side I like traveling, camping, trekking and adventure in general. If you are into personality tests, I am what they call a High Sensation Seeker.
<br>
</p>
{% assign posts = paginator.posts | default: site.posts %}
<div class="posts-list">
{% for post in posts %}
<article class="post-preview">
{%- capture thumbnail -%}
{% if post.thumbnail-img %}
{{ post.thumbnail-img }}
{% elsif post.cover-img %}
{% if post.cover-img.first %}
{{ post.cover-img[0].first.first }}
{% else %}
{{ post.cover-img }}
{% endif %}
{% else %}
{% endif %}
{% endcapture %}
{% assign thumbnail=thumbnail | strip %}
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle | strip_html }}
</h3>
{% endif %}
</a>
<p class="post-meta">
{% assign date_format = site.date_format | default: "%B %-d, %Y" %}
Posted on {{ post.date | date: date_format }}
</p>
<a href="{{ post.url | absolute_url }}">
<h2 class="post-title">{{ post.title | strip_html }}</h2>
{% if site.feed_show_excerpt == false %}
{% if thumbnail != "" %}
<div class="post-image post-image-normal">
<a href="{{ post.url | absolute_url }}" aria-label="Thumbnail">
<img src="{{ thumbnail | absolute_url }}" alt="Post thumbnail">
</a>
</div>
{% endif %}
{% endif %}
{% unless site.feed_show_excerpt == false %}
{% if thumbnail != "" %}
<div class="post-image post-image-short">
<a href="{{ post.url | absolute_url }}" aria-label="Thumbnail">
<img src="{{ thumbnail | absolute_url }}" alt="Post thumbnail">
</a>
</div>
{% endif %}
<div class="post-entry">
{% assign excerpt_length = site.excerpt_length | default: 50 %}
{{ post.excerpt | strip_html | truncatewords: excerpt_length }}
{% assign excerpt_word_count = post.excerpt | number_of_words %}
{% if post.content != post.excerpt or excerpt_word_count > excerpt_length %}
<a href="{{ post.url | absolute_url }}" class="post-read-more">[Read More]</a>
{% endif %}
</div>
{% endunless %}
{% if site.feed_show_tags != false and post.tags.size > 0 %}
<div class="blog-tags">
<span>Tags:</span>
{% for tag in post.tags %}
<a href="{{ '/tags' | absolute_url }}#{{- tag -}}">{{- tag -}}</a>
{% endfor %}
</div>
{% endif %}
</article>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<ul class="pagination main-pager">
{% if paginator.previous_page %}
<li class="page-item previous">
<a class="page-link" href="{{ paginator.previous_page_path | absolute_url }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="page-item next">
<a class="page-link" href="{{ paginator.next_page_path | absolute_url }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}