-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #526 from arifszn/v3.1.0
V3.1.0
- Loading branch information
Showing
15 changed files
with
317 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,7 @@ | |
✓ [Certification Section](#certifications) | ||
✓ [Education Section](#education) | ||
✓ [Projects Section](#projects) | ||
✓ [Publication Section](#publications) | ||
✓ [Blog Posts Section](#blog-posts) | ||
|
||
To view a live example, **[click here](https://arifszn.github.io/gitprofile)**. | ||
|
@@ -210,6 +211,7 @@ const CONFIG = { | |
linkedin: 'ariful-alam', | ||
twitter: 'arif_szn', | ||
mastodon: '[email protected]', | ||
researchGate: '', | ||
facebook: '', | ||
instagram: '', | ||
youtube: '', // example: 'pewdiepie' | ||
|
@@ -282,6 +284,17 @@ const CONFIG = { | |
to: '2014', | ||
}, | ||
], | ||
publications: [ | ||
{ | ||
title: 'Publication Title', | ||
conferenceName: 'Conference Name', | ||
journalName: 'Journal Name', | ||
authors: 'John Doe, Jane Smith', | ||
link: 'https://example.com', | ||
description: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nunc ut.', | ||
}, | ||
], | ||
// Display articles from your medium or dev account. (Optional) | ||
blog: { | ||
source: 'dev', // medium | dev | ||
|
@@ -473,7 +486,7 @@ Your avatar and bio will be fetched from GitHub automatically. | |
|
||
### Social Links | ||
|
||
You can link your social media services you're using, including LinkedIn, Twitter, Mastodon, Facebook, Instagram, YouTube, Dribbble, Behance, Medium, dev, Stack Overflow, Skype, Telegram, personal website, phone and email. | ||
You can link your social media services you're using, including LinkedIn, Twitter, Mastodon, ResearchGate, Facebook, Instagram, YouTube, Dribbble, Behance, Medium, dev, Stack Overflow, Skype, Telegram, personal website, phone and email. | ||
|
||
```ts | ||
// gitprofile.config.ts | ||
|
@@ -483,6 +496,7 @@ const CONFIG = { | |
linkedin: 'ariful-alam', | ||
twitter: 'arif_szn', | ||
mastodon: '[email protected]', | ||
researchGate: '', | ||
facebook: '', | ||
instagram: '', | ||
youtube: '', | ||
|
@@ -660,6 +674,30 @@ const CONFIG = { | |
}; | ||
``` | ||
|
||
### Publications | ||
|
||
Provide your academic publishing in `publications`. | ||
|
||
```ts | ||
// gitprofile.config.ts | ||
const CONFIG = { | ||
// ... | ||
publications: [ | ||
{ | ||
title: 'Publication Title', | ||
conferenceName: 'Conference Name', | ||
journalName: 'Journal Name', | ||
authors: 'John Doe, Jane Smith', | ||
link: 'https://example.com', | ||
description: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nunc ut.', | ||
}, | ||
], | ||
}; | ||
``` | ||
|
||
Empty array will hide the publications section. | ||
|
||
### Blog Posts | ||
|
||
If you have [medium](https://medium.com) or [dev](https://dev.to) account, you can show your recent blog posts in here just by providing your medium/dev username. You can limit how many posts to display (Max is `10`). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,7 @@ const CONFIG = { | |
linkedin: 'ariful-alam', | ||
twitter: 'arif_szn', | ||
mastodon: '[email protected]', | ||
researchGate: '', | ||
facebook: '', | ||
instagram: '', | ||
youtube: '', // example: 'pewdiepie' | ||
|
@@ -132,11 +133,31 @@ const CONFIG = { | |
to: '2014', | ||
}, | ||
], | ||
publications: [ | ||
{ | ||
title: 'Publication Title', | ||
conferenceName: '', | ||
journalName: 'Journal Name', | ||
authors: 'John Doe, Jane Smith', | ||
link: 'https://example.com', | ||
description: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', | ||
}, | ||
{ | ||
title: 'Publication Title', | ||
conferenceName: 'Conference Name', | ||
journalName: '', | ||
authors: 'John Doe, Jane Smith', | ||
link: 'https://example.com', | ||
description: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', | ||
}, | ||
], | ||
// Display articles from your medium or dev account. (Optional) | ||
blog: { | ||
source: 'dev', // medium | dev | ||
username: 'arifszn', // to hide blog section, keep it empty | ||
limit: 3, // How many articles to display. Max is 10. | ||
limit: 2, // How many articles to display. Max is 10. | ||
}, | ||
googleAnalytics: { | ||
id: '', // GA3 tracking id/GA4 tag id UA-XXXXXXXXX-X | G-XXXXXXXXXX | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.