-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.16 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
---
title: "Home"
order: 1
---
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
{% include head.html %}
</head>
<body>
<div class="container-fluid p-0 m-0 d-flex flex-column">
<div class="frame-colors p-4 text-center align-middle">
<a href="edu.html">
<img src="assets/img/793.jpg" class="rounded-circle img-fluid" width="500" height="663"/>
</a>
</div>
<div class="text-center content-colors">
<a href="edu.html">
<h3>Oliver Meyer</h3>
<h4>Software Developer</h4>
</a>
<div class="d-inline-block pr-1 py-2 align-middle">
{% for item in site.data.contacts %}
{% if item.icon-prefix %}
{% assign prefix = item.icon-prefix %}
{% else %}
{% assign prefix = 'fab' %}
{% endif %}
<h4 class="d-inline-block mx-2">
<a href="{{item.link}}"><i class="{{prefix}} fa-{{item.icon}}"></i></a>
</h4>
{% endfor %}
</div>
</div>
</div>
</body>
</html>