maxboeck / resume

An online résumé.
https://demo-resume.netlify.app
MIT License
352 stars 46 forks source link

Feature suggestion: legal boilerplate section #5

Closed Lazza closed 4 years ago

Lazza commented 4 years ago

Due to privacy laws, some countries require people to add a legal note at the bottom, otherwise recruiters or other subjects are forbidden from considering the personal data in the CV.

It could be nice to add it as an option. For example, I hardcoded one here:

<section class="section" id="legal">
<p><small>Autorizzo il trattamento dei dati personali contenuti nel mio curriculum vitae in base all’art. 13 del D. Lgs. 196/2003 e all’art. 13 del Regolamento UE 2016/679 relativo alla protezione delle persone fisiche con riguardo al trattamento dei dati personali.</small></p>
</section>
maxboeck commented 4 years ago

@Lazza ah good point (and nice CV btw!) I'd like to keep this flexible, but I can imagine adding a "freeform" section.

i.e. there would be a custom.md file that would just print any content in an optional section at the bottom.

Lazza commented 4 years ago

Thank you very much!

maxboeck commented 4 years ago

@Lazza I've restructured the source files a bit. There is now a src/entries/content/custom.md file that can be used to achieve a legal disclaimer (or any other custom section).

for this particular usecase, one would remove the title from the file's frontMatter, and wrap the disclaimer text in <small>.

thanks for the input, I hope that solves your Issue!

Lazza commented 4 years ago

Thank you very much!

I will check it out soon, I hope, but at first glance it seems precisely what I was looking for.