jglovier / resume-template

:page_facing_up::briefcase::tophat: A simple Jekyll + GitHub Pages powered resume template.
http://resume-template.joelglovier.com
MIT License
1.85k stars 1.75k forks source link

Resume_header_intro not shown in print preview #47

Closed abiduzz420 closed 6 years ago

abiduzz420 commented 6 years ago

The intro section at the beginning of the resume is not shown in print preview. I tried to save in PDF format and the Intro was omitted. The resume starts off directly with the Experience after my name.

jglovier commented 6 years ago

@abiduzz420 thanks for the heads up. I'll look into it.

Minimalistic commented 6 years ago

@abiduzz420 I could be mistaken, and @jglovier would certainly be the all-knower of all this, but I think that's default by design - or at least you could modify your specific resume's html to show it during a print event. The class no-print is assigned to all elements that are to be omitted during a print - when you say "Intro" I am suspecting you're referring to the Executive Summary, if you have a look in the ~/_layouts/resume.html file, and find the executive summary:


<div class="executive-summary no-print" itemprop="description">
    {{ site.resume_header_intro }}
</div>

So if you have anything within your resume you would like to omit during a print or for that matter, display during a print, you can just append or remove the no-print class as necessary.

abiduzz420 commented 6 years ago

Thanks @Minimalistic That was helpful. no-print it is.

jglovier commented 6 years ago

Yeah, that was added in #22, but I'm certainly open to PRs to modify the current behavior. 👍