简体   繁体   English

如何将项目链接到作品集网站?

[英]How to link projects to portfolio website?

I have finished creating my web developer portfolio and hosted it on github.我已经完成了我的 Web 开发人员组合的创建并将其托管在 github 上。 However I am stuck with further 2 tasks below:但是,我仍然坚持以下 2 项任务:

  1. How to link my other projects to my portfolio website?如何将我的其他项目链接到我的作品集网站? If I upload those project files on github as well, then how do I make them available on portfolio so that when recruiter clicks on them, it takes them to the homepage of that project?如果我也将这些项目文件上传到 github,那么我如何使它们在投资组合中可用,以便招聘人员点击它们时,会将它们带到该项目的主页? (eg, when we click on Live Demo button and we are directed to that project website) (例如,当我们点击 Live Demo 按钮并被定向到该项目网站时)

  2. How to make resume available in downloadable pdf format so that recruiter can download resume from portfolio website?如何以可下载的 pdf 格式提供简历,以便招聘人员可以从投资组合网站下载简历?

Please note, I do not want to spend on hosting or purchasing of any server portion at this stage.请注意,我不想在此阶段花费在托管或购买任何服务器部分上。 So how do I make my resume available to download?那么如何让我的简历可供下载呢?

Thank you.谢谢你。

Use the GitHub API for fetching the list of repositories and display it however you want.使用 GitHub API 获取存储库列表并根据需要显示它。

GET/users/:username/repos

https://api.github.com/users/:username/repos

Check the API reference for listing user repositories .检查 API 参考以 列出用户存储库

For the live demo link, you can make your link yourself with a bit of Js, as '<username>.github.io/' + '<repository_name>/' , or if you have enabled a custom domain then it will differ a bit.对于实时演示链接,您可以使用一些 Js 自己制作链接,如'<username>.github.io/' + '<repository_name>/' ,或者如果您启用了自定义域,则它会有所不同少量。


Upload your resume file to a folder in your repo & link to it directly as you normally would for any file.将您的简历文件上传到您的存储库中的文件夹中,并像往常一样直接链接到任何文件。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM