aboutsummaryrefslogtreecommitdiff
path: root/projects/index.html
blob: c3a14d2cdc85bb74bf55bf4fd180da7913ac7809 (plain) (blame)
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
---
layout: page
title: Projects
id: projects
---
<div class="mt-3">
    I'm an enthusiast of free and open source software. Here is a list of side projects I've been working on.
    <h2 class="mt-3">Select Projects</h2>
    <p>These are the projects that are more involved and presentable.</p>

    <div class="card-columns">
	{% for project in site.projects reversed %}
	<div class="card" >
	    {% if project.logo %}
	    <img class="img-fluid mx-auto d-block" src="/assets/images/{{project.logo}}" alt="Project logo">
	    {% endif %}

	    <div class="card-body">
		<h4 class="card-title">{{ project.title }}</h4>
		<h6 class="card-subtitle mb-2 text-muted">{{ project.year }}</h6>
		<p class="card-text">{{ project.description }}</p>
		<a class="card-link" href="{{ project.site }}">project website</a>
	    </div>
	</div>
	{% endfor %}
    </div>

    <h2>Other Projects</h2>
    <p>Check out <a href="https://github.com/jodersky?tab=repositories">GitHub repositories</a> for a more extensive list of open source contributions.</p>

    <h2 class="mt-3">Signature</h2>
    <p>My public key's fingerprint is: <code>4E7D A7B5 A0F8 6992 D6EB  3F51 4601 8786 62E3 3372</code></p>
    <p><i class="fa fa-hand-o-right"></i> Check identity on <a href="https://keybase.io/jodersky">keybase.io</a></p>
</div>