-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.33 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.33 KB
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: default
title: Portfolio
description: Portfolio of Håkon with projects in travel mapping, web apps, and music tools.
---
<header class="home-header">
<h1>{{ site.data.content.profile.name }}</h1>
<p class="subtitle">{{ site.data.content.profile.title }}</p>
<p class="about-text">{{ site.data.content.profile.about }}</p>
</header>
<section id="projects">
<h2 class="section-title">Projects</h2>
<div id="projects-list">
{% for project in site.data.content.projects %}
<div class="project-card">
<h3>{{ project.title }}</h3>
<p class="tagline">{{ project.tagline }}</p>
<p class="description">{{ project.description }}</p>
<div class="project-actions">
{% for link in project.links %}
{% assign href = link.url %}
{% if href contains '://' %}
<a href="{{ href }}" class="project-link" target="_blank" rel="noopener noreferrer">{{ link.label }}</a>
{% else %}
<a href="{{ href | relative_url }}" class="project-link">{{ link.label }}</a>
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</section>