mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-24 20:00:22 +00:00
Merge pull request #234 from nathen418/add_certifications_section
Add a certificate section
This commit is contained in:
30
README.md
30
README.md
@@ -68,6 +68,7 @@
|
||||
✓ [Social Links](#social-links)
|
||||
✓ [Skill Section](#skills)
|
||||
✓ [Experience Section](#experience)
|
||||
✓ [Certifications Section](#certifications)
|
||||
✓ [Education Section](#education)
|
||||
✓ [Projects Section](#projects)
|
||||
✓ [Blog Posts Section](#blog-posts)
|
||||
@@ -243,6 +244,14 @@ const config = {
|
||||
companyLink: 'https://example.com',
|
||||
},
|
||||
],
|
||||
certifications: [
|
||||
{
|
||||
body: 'Certification Body Name',
|
||||
name: 'Sample Certification',
|
||||
year: 'March 2022',
|
||||
certLink: 'https://example.com'
|
||||
},
|
||||
],
|
||||
education: [
|
||||
{
|
||||
institution: 'Institution Name',
|
||||
@@ -482,6 +491,27 @@ module.exports = {
|
||||
|
||||
Empty array will hide the experience section.
|
||||
|
||||
### Certifications
|
||||
|
||||
Provide your industry certifications in `certifications`.
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
// ...
|
||||
certifications: [
|
||||
{
|
||||
body: 'Certification Body Name',
|
||||
name: 'My Sample Certification',
|
||||
year: 'March 2022',
|
||||
certLink: 'https://example.com'
|
||||
},
|
||||
],
|
||||
};
|
||||
```
|
||||
|
||||
Empty array will hide the certifications section.
|
||||
|
||||
### Education
|
||||
|
||||
Provide your education history in `education`.
|
||||
|
||||
Reference in New Issue
Block a user