-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (70 loc) · 2.55 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
---
title: Home
layout: default
background: '/img/bg-index.jpg'
---
<!-- Home intro
================================================== -->
{% if page.url == "/" %}
<div class="rounded mb-5 hero">
<div class="row align-items-center justify-content-between">
<div class="col-md-6">
<h1 class="font-weight-bold mb-4 serif-font">Spatial Analyst, GHG Carbon Accounting and Modelling, Community-based outcomes.</h1>
<h2 class="font-weight-bold mb-4 serif-font">For Agriculture, Forest, and Land Uses (AFOLU) projects.</h2>
<p class="lead mb-4">Hi!, my name is Andrés Hincapie. <b>I don’t have all the answers, but I know where to start looking</b>. Let's navigate this carbon markets journey and explore Climate-based Solutions together!</p>
<a href="{{site.baseurl}}/about" class="btn btn-dark text-white px-5 btn-lg">About me</a>
<a href="{{site.baseurl}}/about-es" class="btn btn-dark text-white px-5 btn-lg">Español</a>
</div>
<div class="col-md-6 text-right pl-0 pl-lg-4">
<img class="intro" height="500" src="{{site.baseurl}}/assets/images/intro_.svg">
</div>
</div>
{% endif %}
<!-- Dialogue Section
================================================== -->
<div class="dialogue-section mb-5">
<div class="image-container">
<img src="{{site.baseurl}}/assets/images/bubble_posts.svg" alt="Posts Illustration" class="background-image">
<div class="text-overlay">
<p class="lead mb-0">
The posts on this blog reflect my evolving perspectives. These articles are incomplete explorations of complex topics, and, as such, are always open to debate and further development.
</p>
</div>
</div>
</div>
<!-- Featured
================================================== -->
<section class="row">
{% for post in site.posts %}
{% if post.featured == true %}
<div class="col-md-4 mb-5">
{% include postbox.html %}
</div>
{% endif %}
{% endfor %}
</div>
</section>
<!-- Posts List with Sidebar (except featured)
================================================== -->
<section class="row">
<div class="col-sm-8">
<div class="row">
{% for post in paginator.posts %}
{% unless post.featured == true %}
<div class="col-md-6 mb-5">
{% include postbox.html %}
</div>
{% endunless %}
{% endfor %}
</div>
<!-- Pagination -->
<div class="bottompagination">
<span class="navigation" role="navigation">
{% include pagination.html %}
</span>
</div>
</div>
<div class="col-sm-4">
{% include sidebar.html %}
</div>
</section>