-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·87 lines (69 loc) · 2.28 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
---
layout: page
title: Home
---
<!-- EXPERIENCE -->
<section class="post-list">
<h2 class="section-title" id="work-experience">
<a href="#work-experience">work experience</a>
</h2>
{% for post in site.experience reversed %}
<div class="item" align="center">
<a class="url" href="{% if post.externalLink %}{{ post.externalLink }}{% else %}{{ site.url }}{{ post.url }}{% endif %}">
<img class="image" src="{{ post.image }}" width="128px" />
<h3 class="title">{{ post.title }}</h3>
<p style="margin-top: 0.5rem;"> {{ post.description }} </p>
</a>
</div>
{% endfor %}
</section>
<br />
<!-- BLOG -->
<section class="post-list">
<h2 class="section-title" id="featured-posts">
<a href="#featured-posts">featured posts</a>
</h2>
{% for post in site.posts %} {% if post.featured %}
<div class="item" align="center" style="margin-bottom: 24px">
<a class="url" href="{% if post.externalLink %}{{ post.externalLink }}{% else %}{{ site.url }}{{ post.url }}{% endif %}">
{% if post.hero_image %}
<img class="image" src="{{ post.hero_image }}" width="50%" />
{% else %}
<img class="image" src="{{ post.image }}" style="max-height:48px"/>
{% endif %}
<h3 class="title">{{ post.title }}</h3>
<p style="margin-bottom: 0px;margin-top:4px"> {{ post.description }} </p>
{% include post-tags.html %}
</a>
</div>
<br />
{% endif %} {% endfor %}
<p style="text-align:center;">
<a href="/blog/">
see all blog posts →
</a>
</p>
</section>
<br />
<!-- OPEN SOURCE -->
<section class="post-list">
<h2 class="section-title" id="open-source-highlights">
<a href="#open-source-highlights">open source highlights</a>
</h2>
{% for post in site.open-source reversed %} {% if post.star %}
<div class="item" align="center">
<a class="url" href="{% if post.externalLink %}{{ post.externalLink }}{% else %}{{ site.url }}{{ post.url }}{% endif %}">
<img class="image" src="{{ post.image }}" width="50%" />
<h3 class="title">{{ post.title }}</h3>
<p> {{ post.description }} </p>
{% include post-tags.html %}
</a>
</div>
<br />
{% endif %} {% endfor %}
<p style="text-align:center;">
<a href="/open-source/">
see all projects →
</a>
</p>
</section>