-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·46 lines (45 loc) · 1.27 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
---
layout: default
---
{% include hero.html %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Lucas Gatsas",
"url": "https://lucasgatsas.com",
"image": "{{ site.url }}/images/lucas-gatsas-feed-big-2.jpg",
"keywords": "Lucas Gatsas, Gatsas, Astro + Solar Photographer, tse262728.com, tse262728",
"sameAs": [
"https://www.instagram.com/lucasgatsas/",
"https://youtube.com/@lucasgatsasastro",
"https://x.com/lucasgatsas",
"https://www.threads.net/@lucasgatsas",
"https://vsco.co/lucasgatsas/gallery"
],
"jobTitle": "Astro und Solar Photographer",
"worksFor": {
"@type": "Organization",
"name": "Swiss Solar Observatory Society",
"url": "https://lucasgatsas.com"
}
}
</script>
<div class="container">
<div class="row">
<div class="col col-12">
<div class="container__inner">
<div class="contaniner__inner-box">
<div class="row grid">
{% if site.posts.size > 0 %}
{% for post in paginator.posts %}
{% include article-content.html %}
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
{% include pagination.html %}