You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
7 years ago | |
---|---|---|
css | 8 years ago | |
images | 8 years ago | |
js | 8 years ago | |
.gitattributes | 10 years ago | |
.gitignore | 9 years ago | |
.jshintrc | 9 years ago | |
LICENSE | 10 years ago | |
README.md | 7 years ago | |
index-es.html | 7 years ago | |
index-fr.html | 7 years ago | |
index.html | 7 years ago |
README.md
'Share' widget for GNU social
This adds links/buttons to your page so that visitors can share it on GNU social.
HTML
Add the following in the <head>
of your page (if necessary, change the path
to point to the stylesheet).
<link rel="stylesheet" href="styles.css">
Add the following where you want the links/buttons to appear.
<div class="gs-share">
<button data-url="URL-from-data" data-title="TITLE-from-data" class="js-gs-share gs-share--icon">Share on GNU social</button>
</div>
The "data-title" and "data-url" attributes are optional. If they are not set, the "title" will be the title of the current page and the "url" will be the URL of the current page.
Add the following at the bottom of your page (if necessary, change the path to point to the JS file).
<script src="gs-share.js"></script>
Demo
Server-side fallback
For an example of a server-side fallback, see the "php" branch in this repo.