mintyfrankie / brilliant-CV

💼 another CV template for your job application, yet powered by Typst and more
https://typst.app/universe/package/brilliant-cv
Apache License 2.0
416 stars 19 forks source link

update project section to include github link #12

Closed monkeydkhan closed 12 months ago

monkeydkhan commented 12 months ago

image

please can we have something like this for projects so when we click the link we are redirected to source code

mintyfrankie commented 12 months ago

This one looks cool! Can you share the link for this template please?

Per se I think it's doable.

monkeydkhan commented 12 months ago

https://github.com/tensorush/cv

mintyfrankie commented 12 months ago

Thanks! I will see what I can do.

mintyfrankie commented 12 months ago

Just took a look and actually this doesn't require template support update -- all you need to do is to add a link function in your project section.

If you fancy a GitHub icon, you can import the fontawesome package in your specific file and call it directly.

Example - in your projects.typ:

Import the package at the top of the file

#import "@preview/fontawesome:0.1.0": *

And make your entry

#cvEntry(
  title: [Volunteer Data Analyst],
  society: [#fa-github() #link("https://github.com/mintyfrankie/brilliant-CV")[mintyfrankie/brilliant-CV]],
  date: [2019 - Present],
  location: [New York, NY],
  description:...
  )
)

Output: CleanShot 2023-09-19 at 09 17 15

I am closing this issue as it doesn't require further update. Feel free to submit another issue if you have more ideas.