-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 869 Bytes
/
index.html
File metadata and controls
35 lines (34 loc) · 869 Bytes
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
---
layout: default
title: Arne Rosmann
icon: fab fa-github
---
<div class="row">
<div class="col-12">
<!-- Portfolio -->
<section>
<header class="major">
<h2>Some of my projects</h2>
</header>
<div class="row">
{% for project in site.projects %}
<div class="col-4 col-6-medium col-12-small">
<section class="box">
<a href="{{ project.link }}" class="image featured"><img src="{{ project.image }}" alt="" width="150px" /></a>
<header>
<h3>{{ project.name }}</h3>
<h5>Technology: {{ project.technology }}</h5>
</header>
<p>{{ project.content | markdownify }}</p>
<footer>
<ul class="actions">
<li><a href="{{ project.link }}" class="button alt">Find out more</a></li>
</ul>
</footer>
</section>
</div>
{% endfor %}
</div>
</section>
</div>
</div>