mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-22 22:45:42 -06:00
cc1c2d70e0
This PR changes this by grouping the links within an object key: `Site.Data.sharing.links`. This means that sites can provide their own `data/sharing.json` file and overwrite the `links` key, to provide links of their own links.
34 lines
933 B
JSON
34 lines
933 B
JSON
{
|
|
"links": {
|
|
"email": {
|
|
"icon": "email",
|
|
"title": "sharing.email",
|
|
"url": "mailto:?body=%s&subject=%s"
|
|
},
|
|
"facebook": {
|
|
"icon": "facebook",
|
|
"title": "sharing.facebook",
|
|
"url": "https://www.facebook.com/sharer/sharer.php?u=%s"e=%s"
|
|
},
|
|
"linkedin": {
|
|
"icon": "linkedin",
|
|
"title": "sharing.linkedin",
|
|
"url": "https://www.linkedin.com/shareArticle?mini=true&url=%s&title=%s"
|
|
},
|
|
"pinterest": {
|
|
"icon": "pinterest",
|
|
"title": "sharing.pinterest",
|
|
"url": "https://pinterest.com/pin/create/bookmarklet/?url=%s&description=%s"
|
|
},
|
|
"reddit": {
|
|
"icon": "reddit",
|
|
"title": "sharing.reddit",
|
|
"url": "https://reddit.com/submit/?url=%s&resubmit=true&title=%s"
|
|
},
|
|
"twitter": {
|
|
"icon": "twitter",
|
|
"title": "sharing.twitter",
|
|
"url": "https://twitter.com/intent/tweet/?url=%s&text=%s"
|
|
}
|
|
}
|
|
}
|