|
2 | 2 | # Use the same key you added in _config.yml -> social-network-links.
|
3 | 3 | # In addition to that you need to specify the following properties:
|
4 | 4 | # name: Specify a user-friendly name that will be used as a link title
|
5 |
| -# baseURL: Define a base URL which will be combined with the value of |
6 |
| -# site.social-network-links.<key> |
| 5 | +# urlTemplate: Define a URL template. The variable {value} will be replaced |
| 6 | +# with the value of site.social-network-links.<key> |
7 | 7 | # icon: Specify a valid fontawesome icon class
|
8 | 8 |
|
9 | 9 | facebook:
|
10 | 10 | name: "Facebook"
|
11 |
| - baseURL: "https://www.facebook.com/" |
| 11 | + urlTemplate: "https://www.facebook.com/{value}" |
12 | 12 | icon: "fa-facebook"
|
13 | 13 |
|
14 | 14 | github:
|
15 | 15 | name: "GitHub"
|
16 |
| - baseURL: "https://github.com/" |
| 16 | + urlTemplate: "https://github.com/{value}" |
17 | 17 | icon: "fa-github"
|
18 | 18 |
|
19 | 19 | twitter:
|
20 | 20 | name: "Twitter"
|
21 |
| - baseURL: "https://twitter.com/" |
| 21 | + urlTemplate: "https://twitter.com/{value}" |
22 | 22 | icon: "fa-twitter"
|
23 | 23 |
|
24 | 24 | reddit:
|
25 | 25 | name: "Reddit"
|
26 |
| - baseURL: "https://reddit.com/u/" |
| 26 | + urlTemplate: "https://reddit.com/u/{value}" |
27 | 27 | icon: "fa-reddit"
|
28 | 28 |
|
29 | 29 | email:
|
30 | 30 | name: "Email me"
|
31 |
| - baseURL: "mailto:" |
| 31 | + urlTemplate: "mailto:{value}" |
32 | 32 | icon: "fa-envelope"
|
33 | 33 |
|
34 | 34 | linkedin:
|
35 | 35 | name: "LinkedIn"
|
36 |
| - baseURL: "https://linkedin.com/in/" |
| 36 | + urlTemplate: "https://linkedin.com/in/{value}" |
37 | 37 | icon: "fa-linkedin"
|
38 | 38 |
|
39 | 39 | xing:
|
40 | 40 | name: "Xing"
|
41 |
| - baseURL: "https://www.xing.com/profile/" |
| 41 | + urlTemplate: "https://www.xing.com/profile/{value}" |
42 | 42 | icon: "fa-xing"
|
43 | 43 |
|
44 | 44 | stackoverflow:
|
45 | 45 | name: "StackOverflow"
|
46 |
| - baseURL: "https://stackoverflow.com/users/" |
| 46 | + urlTemplate: "https://stackoverflow.com/users/{value}" |
47 | 47 | icon: "fa-stack-overflow"
|
48 | 48 |
|
49 | 49 | snapchat:
|
50 | 50 | name: "Snapchat"
|
51 |
| - baseURL: "https://www.snapchat.com/add/" |
| 51 | + urlTemplate: "https://www.snapchat.com/add/{value}" |
52 | 52 | icon: "fa-snapchat-ghost"
|
53 | 53 |
|
54 | 54 | instagram:
|
55 | 55 | name: "Instagram"
|
56 |
| - baseURL: "https://www.instagram.com/" |
| 56 | + urlTemplate: "https://www.instagram.com/{value}" |
57 | 57 | icon: "fa-instagram"
|
58 | 58 |
|
59 | 59 | youtube:
|
60 | 60 | name: "YouTube"
|
61 |
| - baseURL: "https://www.youtube.com/" |
| 61 | + urlTemplate: "https://www.youtube.com/{value}" |
62 | 62 | icon: "fa-youtube"
|
63 | 63 |
|
64 | 64 | spotify:
|
65 | 65 | name: "Spotify"
|
66 |
| - baseURL: "https://open.spotify.com/user/" |
| 66 | + urlTemplate: "https://open.spotify.com/user/{value}" |
67 | 67 | icon: "fa-spotify"
|
68 | 68 |
|
69 | 69 | telephone:
|
70 | 70 | name: "Phone"
|
71 |
| - baseURL: "tel:" |
| 71 | + urlTemplate: "tel:{value}" |
72 | 72 | icon: "fa-phone"
|
73 | 73 |
|
74 | 74 | rss:
|
75 | 75 | name: "RSS"
|
76 |
| - baseURL: "{{ '/feed.xml' | relative_url }}" |
77 | 76 | icon: "fa-rss"
|
78 | 77 |
|
79 | 78 | steam:
|
80 | 79 | name: "Steam"
|
81 |
| - baseURL: "https://steamcommunity.com/id/" |
| 80 | + urlTemplate: "https://steamcommunity.com/id/{value}" |
82 | 81 | icon: "fa-steam"
|
83 | 82 |
|
84 | 83 | twitch:
|
85 | 84 | name: "Twitch"
|
86 |
| - baseURL: "https://www.twitch.tv/" |
| 85 | + urlTemplate: "https://www.twitch.tv/{value}" |
87 | 86 | icon: "fa-twitch"
|
88 | 87 |
|
89 | 88 | yelp:
|
90 | 89 | name: "Yelp"
|
91 |
| - baseURL: "https://{{ site.author.yelp }}.yelp.com" |
| 90 | + urlTemplate: "https://{value}.yelp.com" |
92 | 91 | icon: "fa-yelp"
|
0 commit comments