-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdf.html
32 lines (32 loc) · 1.07 KB
/
pdf.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
---
layout: "default"
---
{% assign showprivate = false %}
{% assign firstprojects = 4 %}
<div class="container">
{% assign sidebar = site.data.sidebar.pdf %}
{% include sidebar.html %}
<div class="main">
{% for section in site.data.resume %}
{% if section[0] == 'Projects' %}
<h2>Selected Projects</h2>
{% assign projects = section[1] | slice: 0, firstprojects %}
{% assign imagewidth = 60 %}
{% include rightprojects.html %}
{% else %}
{% assign sectionname = section[0] %}
{% assign sectioncontent = section[1] %}
{% include section.html %}
{% endif %}
{% endfor %}
</div>
</div>
<div class="container">
<div class="main try-no-break">
<h2 style="margin: 0px;">More Projects</h2>
{% assign imagewidth = 70 %}
{% assign projects = site.data.resume['Projects'] | slice: firstprojects, 100 %}
{% include rightprojects.html %}
<p>And more you can see on <a href="http://thume.ca/">http://thume.ca/</a> and on my <a href="//github.com/trishume">Github profile</a></p>
</div>
</div>