aboutsummaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-04-09 02:09:35 +0200
committerJakob Odersky <jodersky@gmail.com>2015-04-09 21:38:43 +0200
commitc389f93bdce02f446ce22dec7e93cbe7a00b472c (patch)
treefb35194d21017e45ac9163dd6b981c78f566c100 /projects
parent5cb6b6a78bfeb92c01a1d91f134ac22978e64b09 (diff)
downloadwebsite-c389f93bdce02f446ce22dec7e93cbe7a00b472c.tar.gz
website-c389f93bdce02f446ce22dec7e93cbe7a00b472c.tar.bz2
website-c389f93bdce02f446ce22dec7e93cbe7a00b472c.zip
implement basic site using jekyll
Diffstat (limited to 'projects')
-rw-r--r--projects/index.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/projects/index.html b/projects/index.html
new file mode 100644
index 0000000..e2188b1
--- /dev/null
+++ b/projects/index.html
@@ -0,0 +1,20 @@
+---
+layout: page
+title: Projects
+id: projects
+---
+I believe in the merits of building software in the open and its free usage. Here is a list of side projects I've been working on.
+<h2>Active Projects</h2>
+<p>These are the projects that are more involved and presentable.</p>
+<div class="list-group row">
+ {% for project in site.projects reversed %}
+ <a class="list-group-item" href="{{ project.site }}">
+ <h4>{{ project.title }} <small class="pull-right">{{project.year}}</small></h4>
+ <div>
+ {{ project.description }}
+ </div>
+ </a>
+ {% endfor %}
+</div>
+<h2>Other Projects</h2>
+Check out <a href="https://github.com/jodersky?tab=repositories">github repositories</a> for a complete list of all my projects, including smaller and personal ones. \ No newline at end of file