├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.js ├── package.json ├── partials ├── README.md ├── doc │ ├── doc-fonts.hbs │ ├── doc-lists.hbs │ ├── doc-pr.hbs │ ├── doc-properties.hbs │ ├── doc-styles.hbs │ ├── header-icon.hbs │ ├── header-simple.hbs │ ├── pict │ │ ├── arrow.hbs │ │ ├── bicycle.hbs │ │ ├── book.hbs │ │ ├── code.hbs │ │ ├── edu.hbs │ │ ├── emp.hbs │ │ ├── group.hbs │ │ ├── justice-scales.hbs │ │ ├── quote.hbs │ │ ├── rec.hbs │ │ ├── share-alt.hbs │ │ ├── srv.hbs │ │ ├── star.hbs │ │ ├── thumbs-up.hbs │ │ └── wri.hbs │ └── section │ │ ├── affiliation.hbs │ │ ├── education.hbs │ │ ├── employment.hbs │ │ ├── extracurricular.hbs │ │ ├── governance.hbs │ │ ├── info.hbs │ │ ├── interests.hbs │ │ ├── projects.hbs │ │ ├── reading.hbs │ │ ├── recognition.hbs │ │ ├── references.hbs │ │ ├── service.hbs │ │ ├── skills.hbs │ │ ├── speaking.hbs │ │ └── writing.hbs ├── html │ ├── header-icon.hbs │ ├── header-simple.hbs │ ├── highlights.hbs │ └── section │ │ ├── affiliation.hbs │ │ ├── education.hbs │ │ ├── employment.hbs │ │ ├── extracurricular.hbs │ │ ├── governance.hbs │ │ ├── info.hbs │ │ ├── interests.hbs │ │ ├── projects.hbs │ │ ├── reading.hbs │ │ ├── recognition.hbs │ │ ├── references.hbs │ │ ├── samples.hbs │ │ ├── service.hbs │ │ ├── skills.hbs │ │ ├── speaking.hbs │ │ ├── testimonials.hbs │ │ └── writing.hbs ├── md │ └── section │ │ ├── affiliation.hbs │ │ ├── education.hbs │ │ ├── employment.hbs │ │ ├── extracurricular.hbs │ │ ├── governance.hbs │ │ ├── info.hbs │ │ ├── interests.hbs │ │ ├── projects.hbs │ │ ├── reading.hbs │ │ ├── recognition.hbs │ │ ├── references.hbs │ │ ├── samples.hbs │ │ ├── service.hbs │ │ ├── skills.hbs │ │ ├── speaking.hbs │ │ └── writing.hbs └── txt │ └── section │ ├── affiliation.hbs │ ├── education.hbs │ ├── employment.hbs │ ├── extracurricular.hbs │ ├── governance.hbs │ ├── info.hbs │ ├── interests.hbs │ ├── projects.hbs │ ├── reading.hbs │ ├── recognition.hbs │ ├── references.hbs │ ├── samples.hbs │ ├── service.hbs │ ├── skills.hbs │ ├── speaking.hbs │ └── writing.hbs └── themes ├── README.md ├── awesome ├── README.md ├── src │ └── latex │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── awesome-cv.cls │ │ ├── examples │ │ ├── coverletter-0.png │ │ ├── coverletter-1.png │ │ ├── coverletter.pdf │ │ ├── coverletter.tex │ │ ├── cv.pdf │ │ ├── cv.tex │ │ ├── cv │ │ │ ├── committees.tex │ │ │ ├── education.tex │ │ │ ├── experience.tex │ │ │ ├── extracurricular.tex │ │ │ ├── honors.tex │ │ │ ├── presentation.tex │ │ │ ├── service.tex │ │ │ ├── skills.tex │ │ │ └── writing.tex │ │ ├── resume-0.png │ │ ├── resume-1.png │ │ ├── resume.pdf │ │ ├── resume.tex │ │ └── resume │ │ │ ├── committees.tex │ │ │ ├── education.tex │ │ │ ├── experience.tex │ │ │ ├── extracurricular.tex │ │ │ ├── honors.tex │ │ │ ├── presentation.tex │ │ │ ├── service.tex │ │ │ ├── summary.tex │ │ │ └── writing.tex │ │ ├── fontawesome.sty │ │ └── fonts │ │ ├── FontAwesome.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-ThinItalic.ttf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf └── theme.json ├── basis ├── README.md ├── helpers │ └── sample-helpers.js ├── src │ ├── html.css │ ├── html.html │ ├── md.txt │ ├── pdf.html │ └── txt.txt └── theme.json ├── compact ├── README.md ├── compact.png ├── src │ ├── compact-doc.xml │ ├── compact-html.css │ ├── compact-html.html │ ├── compact-pdf.css │ ├── compact-pdf.html │ └── partials │ │ └── skills.xml └── theme.json ├── modern ├── README.md ├── anon.png ├── modern.png ├── src │ ├── _img │ │ ├── fa-building.png │ │ ├── fa-child.png │ │ ├── fa-code.png │ │ ├── fa-mortar-board.png │ │ ├── fa-pencil.png │ │ ├── fa-person.png │ │ └── fa-trophy.png │ ├── modern-doc.xml │ ├── modern-html.css │ ├── modern-html.html │ ├── modern-pdf.css │ ├── modern-pdf.html │ └── partials │ │ ├── info.xml │ │ └── skills.xml └── theme.json └── positive ├── README.md ├── positive.png ├── src ├── partials │ ├── education.hbs │ ├── employment.hbs │ ├── extracurricular.hbs │ ├── service.hbs │ ├── skills.xml │ └── testimonials.hbs ├── positive-doc.xml ├── positive-html.css ├── positive-html.html ├── positive-pdf.css └── positive-pdf.html └── theme.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/package.json -------------------------------------------------------------------------------- /partials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/README.md -------------------------------------------------------------------------------- /partials/doc/doc-fonts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/doc-fonts.hbs -------------------------------------------------------------------------------- /partials/doc/doc-lists.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/doc-lists.hbs -------------------------------------------------------------------------------- /partials/doc/doc-pr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/doc-pr.hbs -------------------------------------------------------------------------------- /partials/doc/doc-properties.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/doc-properties.hbs -------------------------------------------------------------------------------- /partials/doc/doc-styles.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/doc-styles.hbs -------------------------------------------------------------------------------- /partials/doc/header-icon.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/header-icon.hbs -------------------------------------------------------------------------------- /partials/doc/header-simple.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/header-simple.hbs -------------------------------------------------------------------------------- /partials/doc/pict/arrow.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/arrow.hbs -------------------------------------------------------------------------------- /partials/doc/pict/bicycle.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/bicycle.hbs -------------------------------------------------------------------------------- /partials/doc/pict/book.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/book.hbs -------------------------------------------------------------------------------- /partials/doc/pict/code.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/code.hbs -------------------------------------------------------------------------------- /partials/doc/pict/edu.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/edu.hbs -------------------------------------------------------------------------------- /partials/doc/pict/emp.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/emp.hbs -------------------------------------------------------------------------------- /partials/doc/pict/group.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/group.hbs -------------------------------------------------------------------------------- /partials/doc/pict/justice-scales.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/justice-scales.hbs -------------------------------------------------------------------------------- /partials/doc/pict/quote.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/quote.hbs -------------------------------------------------------------------------------- /partials/doc/pict/rec.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/rec.hbs -------------------------------------------------------------------------------- /partials/doc/pict/share-alt.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/share-alt.hbs -------------------------------------------------------------------------------- /partials/doc/pict/srv.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/srv.hbs -------------------------------------------------------------------------------- /partials/doc/pict/star.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/star.hbs -------------------------------------------------------------------------------- /partials/doc/pict/thumbs-up.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/thumbs-up.hbs -------------------------------------------------------------------------------- /partials/doc/pict/wri.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/pict/wri.hbs -------------------------------------------------------------------------------- /partials/doc/section/affiliation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/affiliation.hbs -------------------------------------------------------------------------------- /partials/doc/section/education.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/education.hbs -------------------------------------------------------------------------------- /partials/doc/section/employment.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/employment.hbs -------------------------------------------------------------------------------- /partials/doc/section/extracurricular.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/extracurricular.hbs -------------------------------------------------------------------------------- /partials/doc/section/governance.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/governance.hbs -------------------------------------------------------------------------------- /partials/doc/section/info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/info.hbs -------------------------------------------------------------------------------- /partials/doc/section/interests.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/interests.hbs -------------------------------------------------------------------------------- /partials/doc/section/projects.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/projects.hbs -------------------------------------------------------------------------------- /partials/doc/section/reading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/reading.hbs -------------------------------------------------------------------------------- /partials/doc/section/recognition.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/recognition.hbs -------------------------------------------------------------------------------- /partials/doc/section/references.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/references.hbs -------------------------------------------------------------------------------- /partials/doc/section/service.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/service.hbs -------------------------------------------------------------------------------- /partials/doc/section/skills.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/skills.hbs -------------------------------------------------------------------------------- /partials/doc/section/speaking.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/speaking.hbs -------------------------------------------------------------------------------- /partials/doc/section/writing.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/doc/section/writing.hbs -------------------------------------------------------------------------------- /partials/html/header-icon.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/header-icon.hbs -------------------------------------------------------------------------------- /partials/html/header-simple.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/header-simple.hbs -------------------------------------------------------------------------------- /partials/html/highlights.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/highlights.hbs -------------------------------------------------------------------------------- /partials/html/section/affiliation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/affiliation.hbs -------------------------------------------------------------------------------- /partials/html/section/education.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/education.hbs -------------------------------------------------------------------------------- /partials/html/section/employment.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/employment.hbs -------------------------------------------------------------------------------- /partials/html/section/extracurricular.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/extracurricular.hbs -------------------------------------------------------------------------------- /partials/html/section/governance.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/governance.hbs -------------------------------------------------------------------------------- /partials/html/section/info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/info.hbs -------------------------------------------------------------------------------- /partials/html/section/interests.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/interests.hbs -------------------------------------------------------------------------------- /partials/html/section/projects.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/projects.hbs -------------------------------------------------------------------------------- /partials/html/section/reading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/reading.hbs -------------------------------------------------------------------------------- /partials/html/section/recognition.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/recognition.hbs -------------------------------------------------------------------------------- /partials/html/section/references.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/references.hbs -------------------------------------------------------------------------------- /partials/html/section/samples.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/samples.hbs -------------------------------------------------------------------------------- /partials/html/section/service.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/service.hbs -------------------------------------------------------------------------------- /partials/html/section/skills.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/skills.hbs -------------------------------------------------------------------------------- /partials/html/section/speaking.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/speaking.hbs -------------------------------------------------------------------------------- /partials/html/section/testimonials.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/testimonials.hbs -------------------------------------------------------------------------------- /partials/html/section/writing.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/html/section/writing.hbs -------------------------------------------------------------------------------- /partials/md/section/affiliation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/affiliation.hbs -------------------------------------------------------------------------------- /partials/md/section/education.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/education.hbs -------------------------------------------------------------------------------- /partials/md/section/employment.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/employment.hbs -------------------------------------------------------------------------------- /partials/md/section/extracurricular.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/extracurricular.hbs -------------------------------------------------------------------------------- /partials/md/section/governance.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/governance.hbs -------------------------------------------------------------------------------- /partials/md/section/info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/info.hbs -------------------------------------------------------------------------------- /partials/md/section/interests.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/interests.hbs -------------------------------------------------------------------------------- /partials/md/section/projects.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/projects.hbs -------------------------------------------------------------------------------- /partials/md/section/reading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/reading.hbs -------------------------------------------------------------------------------- /partials/md/section/recognition.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/recognition.hbs -------------------------------------------------------------------------------- /partials/md/section/references.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/references.hbs -------------------------------------------------------------------------------- /partials/md/section/samples.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/samples.hbs -------------------------------------------------------------------------------- /partials/md/section/service.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/service.hbs -------------------------------------------------------------------------------- /partials/md/section/skills.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/skills.hbs -------------------------------------------------------------------------------- /partials/md/section/speaking.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/speaking.hbs -------------------------------------------------------------------------------- /partials/md/section/writing.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/md/section/writing.hbs -------------------------------------------------------------------------------- /partials/txt/section/affiliation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/affiliation.hbs -------------------------------------------------------------------------------- /partials/txt/section/education.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/education.hbs -------------------------------------------------------------------------------- /partials/txt/section/employment.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/employment.hbs -------------------------------------------------------------------------------- /partials/txt/section/extracurricular.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/extracurricular.hbs -------------------------------------------------------------------------------- /partials/txt/section/governance.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/governance.hbs -------------------------------------------------------------------------------- /partials/txt/section/info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/info.hbs -------------------------------------------------------------------------------- /partials/txt/section/interests.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/interests.hbs -------------------------------------------------------------------------------- /partials/txt/section/projects.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/projects.hbs -------------------------------------------------------------------------------- /partials/txt/section/reading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/reading.hbs -------------------------------------------------------------------------------- /partials/txt/section/recognition.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/recognition.hbs -------------------------------------------------------------------------------- /partials/txt/section/references.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/references.hbs -------------------------------------------------------------------------------- /partials/txt/section/samples.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/samples.hbs -------------------------------------------------------------------------------- /partials/txt/section/service.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/service.hbs -------------------------------------------------------------------------------- /partials/txt/section/skills.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/skills.hbs -------------------------------------------------------------------------------- /partials/txt/section/speaking.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/speaking.hbs -------------------------------------------------------------------------------- /partials/txt/section/writing.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/partials/txt/section/writing.hbs -------------------------------------------------------------------------------- /themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/README.md -------------------------------------------------------------------------------- /themes/awesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/README.md -------------------------------------------------------------------------------- /themes/awesome/src/latex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/.gitignore -------------------------------------------------------------------------------- /themes/awesome/src/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/Makefile -------------------------------------------------------------------------------- /themes/awesome/src/latex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/README.md -------------------------------------------------------------------------------- /themes/awesome/src/latex/awesome-cv.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/awesome-cv.cls -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/coverletter-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/coverletter-0.png -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/coverletter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/coverletter-1.png -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/coverletter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/coverletter.pdf -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/coverletter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/coverletter.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv.pdf -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/committees.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/committees.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/education.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/education.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/experience.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/experience.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/extracurricular.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/extracurricular.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/honors.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/honors.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/presentation.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/service.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/service.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/skills.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/skills.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/cv/writing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/cv/writing.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume-0.png -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume-1.png -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume.pdf -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/committees.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/committees.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/education.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/education.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/experience.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/experience.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/extracurricular.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/extracurricular.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/honors.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/honors.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/presentation.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/service.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/service.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/summary.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/examples/resume/writing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/examples/resume/writing.tex -------------------------------------------------------------------------------- /themes/awesome/src/latex/fontawesome.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fontawesome.sty -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/SourceSansPro-It.otf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /themes/awesome/src/latex/fonts/SourceSansPro-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/src/latex/fonts/SourceSansPro-SemiboldIt.otf -------------------------------------------------------------------------------- /themes/awesome/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/awesome/theme.json -------------------------------------------------------------------------------- /themes/basis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/basis/README.md -------------------------------------------------------------------------------- /themes/basis/helpers/sample-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/basis/helpers/sample-helpers.js -------------------------------------------------------------------------------- /themes/basis/src/html.css: -------------------------------------------------------------------------------- 1 | /* An empty CSS file. */ 2 | -------------------------------------------------------------------------------- /themes/basis/src/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/basis/src/html.html -------------------------------------------------------------------------------- /themes/basis/src/md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/basis/src/md.txt -------------------------------------------------------------------------------- /themes/basis/src/pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/basis/src/pdf.html -------------------------------------------------------------------------------- /themes/basis/src/txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/basis/src/txt.txt -------------------------------------------------------------------------------- /themes/basis/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/basis/theme.json -------------------------------------------------------------------------------- /themes/compact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/README.md -------------------------------------------------------------------------------- /themes/compact/compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/compact.png -------------------------------------------------------------------------------- /themes/compact/src/compact-doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/src/compact-doc.xml -------------------------------------------------------------------------------- /themes/compact/src/compact-html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/src/compact-html.css -------------------------------------------------------------------------------- /themes/compact/src/compact-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/src/compact-html.html -------------------------------------------------------------------------------- /themes/compact/src/compact-pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/src/compact-pdf.css -------------------------------------------------------------------------------- /themes/compact/src/compact-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/src/compact-pdf.html -------------------------------------------------------------------------------- /themes/compact/src/partials/skills.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/src/partials/skills.xml -------------------------------------------------------------------------------- /themes/compact/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/compact/theme.json -------------------------------------------------------------------------------- /themes/modern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/README.md -------------------------------------------------------------------------------- /themes/modern/anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/anon.png -------------------------------------------------------------------------------- /themes/modern/modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/modern.png -------------------------------------------------------------------------------- /themes/modern/src/_img/fa-building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/_img/fa-building.png -------------------------------------------------------------------------------- /themes/modern/src/_img/fa-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/_img/fa-child.png -------------------------------------------------------------------------------- /themes/modern/src/_img/fa-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/_img/fa-code.png -------------------------------------------------------------------------------- /themes/modern/src/_img/fa-mortar-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/_img/fa-mortar-board.png -------------------------------------------------------------------------------- /themes/modern/src/_img/fa-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/_img/fa-pencil.png -------------------------------------------------------------------------------- /themes/modern/src/_img/fa-person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/_img/fa-person.png -------------------------------------------------------------------------------- /themes/modern/src/_img/fa-trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/_img/fa-trophy.png -------------------------------------------------------------------------------- /themes/modern/src/modern-doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/modern-doc.xml -------------------------------------------------------------------------------- /themes/modern/src/modern-html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/modern-html.css -------------------------------------------------------------------------------- /themes/modern/src/modern-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/modern-html.html -------------------------------------------------------------------------------- /themes/modern/src/modern-pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/modern-pdf.css -------------------------------------------------------------------------------- /themes/modern/src/modern-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/modern-pdf.html -------------------------------------------------------------------------------- /themes/modern/src/partials/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/partials/info.xml -------------------------------------------------------------------------------- /themes/modern/src/partials/skills.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/src/partials/skills.xml -------------------------------------------------------------------------------- /themes/modern/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/modern/theme.json -------------------------------------------------------------------------------- /themes/positive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/README.md -------------------------------------------------------------------------------- /themes/positive/positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/positive.png -------------------------------------------------------------------------------- /themes/positive/src/partials/education.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/partials/education.hbs -------------------------------------------------------------------------------- /themes/positive/src/partials/employment.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/partials/employment.hbs -------------------------------------------------------------------------------- /themes/positive/src/partials/extracurricular.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/partials/extracurricular.hbs -------------------------------------------------------------------------------- /themes/positive/src/partials/service.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/partials/service.hbs -------------------------------------------------------------------------------- /themes/positive/src/partials/skills.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/partials/skills.xml -------------------------------------------------------------------------------- /themes/positive/src/partials/testimonials.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/partials/testimonials.hbs -------------------------------------------------------------------------------- /themes/positive/src/positive-doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/positive-doc.xml -------------------------------------------------------------------------------- /themes/positive/src/positive-html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/positive-html.css -------------------------------------------------------------------------------- /themes/positive/src/positive-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/positive-html.html -------------------------------------------------------------------------------- /themes/positive/src/positive-pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/positive-pdf.css -------------------------------------------------------------------------------- /themes/positive/src/positive-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/src/positive-pdf.html -------------------------------------------------------------------------------- /themes/positive/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fresh-standard/fresh-themes/HEAD/themes/positive/theme.json --------------------------------------------------------------------------------