This commit is contained in:
parent
a990552f03
commit
23c488547a
3 changed files with 22 additions and 10 deletions
|
@ -84,7 +84,9 @@
|
|||
"institution": "Hochschule Wismar",
|
||||
"start": "Sept. 2018",
|
||||
"end": "Juni 2021",
|
||||
"description": "Berufsbegleitendes Fernstudium",
|
||||
"descriptions": [
|
||||
"Berufsbegleitendes Fernstudium"
|
||||
],
|
||||
"city": "Wismar"
|
||||
},
|
||||
{
|
||||
|
@ -93,7 +95,7 @@
|
|||
"institution": "Duale Hochschule Baden-Württemberg",
|
||||
"start": "Okt. 2014",
|
||||
"end": "Sept. 2017",
|
||||
"description": "",
|
||||
"descriptions": [],
|
||||
"city": "Karlsruhe"
|
||||
},
|
||||
{
|
||||
|
@ -102,7 +104,9 @@
|
|||
"institution": "Albert-Einstein-Schule",
|
||||
"start": "Sept. 2011",
|
||||
"end": "Juni 2014",
|
||||
"description": "Technisches Gymnasium, Profil Informationstechnik",
|
||||
"descriptions": [
|
||||
"Technisches Gymnasium, Profil Informationstechnik"
|
||||
],
|
||||
"city": "Ettlingen"
|
||||
}
|
||||
]
|
||||
|
@ -120,7 +124,7 @@
|
|||
{
|
||||
"icon": "samuel.png",
|
||||
"name": "Open Source",
|
||||
"description": "Wenn ich Zeit finde beteilige ich mich an Open Source Projekten oder schreibe gelegentlich den ein oder anderen Artikel dazu.",
|
||||
"description": "Wenn ich Zeit finde, beteilige ich mich an Open Source Projekten oder schreibe gelegentlich den ein oder anderen Artikel dazu.",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
|
|
|
@ -84,7 +84,9 @@
|
|||
"institution": "Wismar University",
|
||||
"start": "Sept. 2018",
|
||||
"end": "June 2021",
|
||||
"description": "Part-time distance studies",
|
||||
"descriptions": [
|
||||
"Part-time distance studies"
|
||||
],
|
||||
"city": "Wismar"
|
||||
},
|
||||
{
|
||||
|
@ -93,7 +95,7 @@
|
|||
"institution": "Baden-Württemberg Cooperative State University",
|
||||
"start": "Oct. 2014",
|
||||
"end": "Sept. 2017",
|
||||
"description": "",
|
||||
"descriptions": [],
|
||||
"city": "Karlsruhe"
|
||||
},
|
||||
{
|
||||
|
@ -102,7 +104,9 @@
|
|||
"institution": "Albert-Einstein School",
|
||||
"start": "Sept. 2011",
|
||||
"end": "June 2014",
|
||||
"description": "Technical high school, profile information technology",
|
||||
"descriptions": [
|
||||
"Technical high school, profile information technology"
|
||||
],
|
||||
"city": "Ettlingen"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -154,7 +154,11 @@ title: {{site.title}}
|
|||
<h3 class="timeline-title">{{item.degree}}</h3>
|
||||
{% endif %}
|
||||
<span class="company">{{item.institution}} - {{item.city}}</span>
|
||||
<p>{{item.description}}</p>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
{%- for description in item.descriptions %}
|
||||
<p>{{description | safe}}</p>
|
||||
{%- endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
@ -175,7 +179,7 @@ title: {{site.title}}
|
|||
<div class="row">
|
||||
{%- for item in site.strings.projects.list %}
|
||||
<div class="col-md-4 text-center">
|
||||
<a class="feature-left" href="{{item.url}}" target="_blank">
|
||||
<a class="feature-left" {% if item.url %}href="{{item.url}}"{% endif %} target="_blank">
|
||||
<span class="icon">
|
||||
<img src="/img/{{item.icon}}">
|
||||
</span>
|
||||
|
@ -239,7 +243,7 @@ title: {{site.title}}
|
|||
<div class="row">
|
||||
{%- for item in site.strings.interests.list %}
|
||||
<div class="col-lg-3 col-md-6 col-12 text-center p-3">
|
||||
<a href="{{item.url}}" target="_blank" class="interest interest-{{item.image}}">
|
||||
<a {% if item.url %}href="{{item.url}}"{% endif %} target="_blank" class="interest interest-{{item.image}}">
|
||||
<div class="desc">
|
||||
<h3>{{item.name}}</h3>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue