-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (33 loc) · 1.11 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
---
layout: cv
---
{% include header.html %}
{% for section in page.sections %}
<div class="row cv-section">
<div class="col s12">
<div class="card horizontal cv-section-{{ section.name | downcase | replace: ' ',
'-' | replace: '_', '-' }}">
<div class="card-content cv-section-label {{ page.theme.color }}
lighten-5 waves-effect waves-light waves-ripple">
<ul class="cv-section">
<li class="mdi mdi-{{ section.icon }}">
{% if section.title %}
{{ section.title | capitalize }}
{% else %}
{{ section.name | capitalize }}
{% endif %}
</li>
</ul>
</div>
<div class="card-stacked">
<div class="card-content cv-section-body cv-section-{{ section.name | downcase | replace: ' ', '-' | replace: '_', '-' }}">
{% capture mdcontent %}
{% include_relative content/{{ section.name | downcase | replace: " ", "_" }}.md %}
{% endcapture %}
{{ mdcontent | strip | markdownify }}
</div>
</div>
</div>
</div>
</div>
{% endfor %}