diff options
author | Christophe ROGER <darwiin@users.noreply.github.com> | 2018-10-11 23:37:10 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 23:37:10 +1100 |
commit | 7e7d8031d61c0508c16a2d47cd3da5172fe4981a (patch) | |
tree | cbaaff0680749ae99b3c3f038d95419cebcce76a | |
parent | a00d58ae0290c666b756c04684053e9c304416cd (diff) | |
parent | 39b0faba44ea26997dbe2e834bd2326f82748e77 (diff) | |
download | cv-7e7d8031d61c0508c16a2d47cd3da5172fe4981a.tar.gz cv-7e7d8031d61c0508c16a2d47cd3da5172fe4981a.tar.bz2 cv-7e7d8031d61c0508c16a2d47cd3da5172fe4981a.tar.xz cv-7e7d8031d61c0508c16a2d47cd3da5172fe4981a.zip |
Merge pull request #16 from ZielinskiLukasz/master
added support for BitBucket accounts
-rwxr-xr-x | yaac-another-awesome-cv.cls | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yaac-another-awesome-cv.cls b/yaac-another-awesome-cv.cls index f131767..12aa446 100755 --- a/yaac-another-awesome-cv.cls +++ b/yaac-another-awesome-cv.cls @@ -174,6 +174,7 @@ \newcommand{\mobileSymbol}{\faMobilePhone} \newcommand{\githubSymbol}{\faGithub} \newcommand{\mediumSymbol}{\faMedium} +\newcommand{\bitbucketSymbol}{\faBitbucket} \newcommand\link[2]{\color{linkcolor}\href{#1}{#2}\color{Black} } \newcommand\important[1]{\textbf #1} @@ -239,6 +240,10 @@ % Usage: \medium{<medium-nick>} \newcommand*{\medium}[1]{\sociallink{\mediumSymbol}{https://www.medium.com/@#1}{medium.com/#1}} +% Render author's bitbucket (optional) +% Usage: \bitbucket{<bitbucket-account-name>} +\newcommand*{\bitbucket}[1]{\sociallink{\bitbucketSymbol}{https://bitbucket.com/#1}{bitbucket.com/#1}} + % Render author's email (optional) % Usage: \email{<email adress>} \newcommand*{\email}[1]{\sociallink{\mailSymbol}{mailto:#1}{#1}} |