shortcode github card
github card
Display a card for GitHub profile and repo in your hexo blog. Implemented with Github-cards.
Insert githubCard
tag in your article:
1 | {% githubCard user:your_user [repo:your_repo] [width:400] [height:200] [theme:default] [client_id:your_client_id] [client_secret:your_client_secret] [align:text-align_position] %} |
Argument | Description |
---|---|
user | GitHub user name |
repo | (Optional) GitHub repository name of the user. If omit then display only the user profile |
height | (Optional) Widget’s height (in ‘px’). Default is 200. |
width | (Optional) Widget’s width (in ‘px’). Default is 400. |
client_id | (Optional) Your GitHub app client_id |
client_secret | (Optional) Your GitHub app client_secret |
align | (Optional) What kind of text-align is you want. Default is center. |
(Configuration are consistent with github-cards)
Example
Display user profile only
1 | {% githubCard user:dimaslanjaka %} |
Hexo github card
Display a repo
1 | {% githubCard user:dimaslanjaka repo:hexo-seo %} |