Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements text #8

Merged
merged 2 commits into from
Oct 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cp -r assets/js dist/assets
- run:
name: Build DevResume CV view
command: python ./tools/jinja2-render -y fluz.yml -o dist/index.html DevResume/index.html.jinja
command: python ./tools/jinja2-render -y fluz.yml -o dist/index.html DevResume/index.html.jinja && cp dist/index.html dist/cv_devresume.html
- run:
name: Build CeeVee CV view
command: python ./tools/jinja2-render -y fluz.yml -o dist/cv_ceevee.html ceevee/index.html.jinja
Expand Down
18 changes: 14 additions & 4 deletions DevResume/index.html.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<div class="item">
<h4 class="item-title">Technical</h4>
<ul class="list-unstyled resume-skills-list">
((* for s in technical_skills *))
((* for s in (technical_skills|sort(reverse=true, attribute='level'))[0:5] *))
<li class="mb-2">(((s.skill)))</li>
((* endfor *))
</ul>
Expand Down Expand Up @@ -174,14 +174,24 @@
</ul>
</section><!--//languages-section-->
<section class="skills-section py-3">
<h3 class="text-uppercase resume-section-heading mb-4">Interests <i class="far fa-bookmark"></i></h3>
<h3 class="text-uppercase resume-section-heading mb-4">Interests <i class="fas fa-bookmark"></i></h3>
<ul class="list-unstyled resume-interests-list mb-0">
((* for i in interest *))
<li class="mb-2"><i class="fas (((i.awesome))) mr-2" data-fa-transform="down-4"></i>(((i.item)))</li>
((* endfor *))
</ul><!--//interests-section-->
</ul><!--//cv_views-section-->
</section>

<section class="skills-section py-3">
<h3 class="text-uppercase resume-section-heading mb-4">CV layouts <i class="fas fa-file-alt"></i></h3>
<ul class="list-unstyled resume-interests-list mb-0">
((* for v in cv_views *))
<li>
<div class="font-weight-bold"><a href="(((v.link)))" target="_blank">(((v.item)))</a></div>
</li>
((* endfor *))
</ul><!--//cv_views-section-->
</section>

</aside><!--//resume-aside-->
</div><!--//row-->
</div><!--//resume-body-->
Expand Down
27 changes: 21 additions & 6 deletions fluz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,22 +91,25 @@ professional:
education:
- university: University of São Paulo (USP)
institute: Polytechnic School
title: Ph.D. in Science
period: 2010 - 2015
title: Ph.D. in Computing Engineering
period: 2015
full_period: 2010 - 2015
theme: Methodology for execution of parallel applications based on BSP model with heterogeneous tasks
scholarship: FUSP - University of São Paulo Foundation

- university: University of São Paulo (USP)
institute: Physics Institute of São Carlos
title: M.Sc. in Applied Physics
period: 2006 - 2010
period: 2010
full_period: 2006 - 2010
theme: Methodology for execution of parallel applications based on BSP model with heterogeneous tasks
scholarship: CNPq - National Council for Scientific and Technological Development

- university: University of São Paulo (USP)
institute: Physics Institute of São Carlos
title: B.Sc. in Physics
period: 2001 - 206
period: 2006
full_period: 2001 - 206

certification:
- school: Free Code Camp
Expand Down Expand Up @@ -136,8 +139,8 @@ language:
technical_skills:
- skill: C++
level: 9
- skill: bash
level: 10
- skill: Bash
level: 8.9
- skill: Python
level: 8
- skill: JavaScript
Expand Down Expand Up @@ -181,3 +184,15 @@ interest:
awesome: fa-futbol
- item: MOOC's
awesome: fa-chalkboard-teacher

cv_views:
- item: DevResume
link: cv_devresume.html
- item: CeeVee
link: cv_ceevee.html
- item: Markdown
link: cv_fernando_luz.md
- item: Markdown (html)
link: cv_fernando_luz_md.html
- item: Markdown (txt)
link: cv_fernando_luz_md.txt