-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (71 loc) · 2.15 KB
/
index.html
File metadata and controls
77 lines (71 loc) · 2.15 KB
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
---
layout: default
title: "Galo Navarro - Principal Software Engineer | Distributed Systems, Developer Platforms, AI Infrastructure"
---
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"name": "{{ site.title }}",
"url": "{{ site.url }}",
"description": {{ site.description | jsonify }}
},
{
"@type": "Blog",
"name": "{{ site.title }}",
"url": "{{ site.url }}",
"description": {{ site.description | jsonify }},
"author": {
"@type": "Person",
"name": "Galo Navarro",
"url": "{{ site.url }}/about"
},
"blogPost": [{% for post in site.posts %}
{
"@type": "BlogPosting",
"headline": {{ post.title | jsonify }},
"url": "{{ post.url | prepend: site.baseurl | prepend: site.url }}",
"datePublished": "{{ post.date | date_to_xmlschema }}"
}{% unless forloop.last %},{% endunless %}{% endfor %}
]
}
]
}
</script>
{% include intro.html %}
<div class="subscribe">
<p>Get updates via
<a href="{{ " /feed.xml" | prepend: site.baseurl }}">RSS feed</a> or
<a href="https://newsletter.varoa.net">mailing list</a>.
</p>
<div class="mailing-list">
<script src="https://cdn.jsdelivr.net/ghost/signup-form@~0.1/umd/signup-form.min.js"
data-button-color="#4595DB" data-button-text-color="#FFFFFF"
data-site="https://newsletter.varoa.net/" async>
</script>
</div>
</div>
<h3 class="theme-heading">Highlights</h3>
{% assign highlighted = site.posts | where: "highlight", true %}
{% if highlighted.size > 0 %}
<ul class="post-list themed">
{% for post in highlighted %}
<li>
<div class="post-title-row">
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
{% if post.excerpt %}<p class="post-excerpt">{{ post.excerpt }}</p>{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
<h3 class="theme-heading">All writing</h3>
<ul class="post-list archive">
{% for post in site.posts %}{% unless post.highlight %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}{% endfor %}
</ul>