Merge pull request #16792 from colemanw/dashboardContact
[civicrm-core.git] / templates / CRM / common / SocialNetwork.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | Copyright CiviCRM LLC. All rights reserved. |
4 | |
5 | This work is published under the GNU AGPLv3 license with some |
6 | permitted exceptions and without any warranty. For full license |
7 | and copyright information, see https://civicrm.org/licensing |
8 +--------------------------------------------------------------------+
9 *}
10 {* Adds social networking buttons (Facebook like, Twitter tweet, Google +1, LinkedIn) to public pages (online contributions, event info) *}
11
12 <div class="crm-section crm-socialnetwork help">
13 <h3 class="nobackground">{ts}Help spread the word{/ts}</h3>
14 <div class="description">
15 {ts}Please help us and let your friends, colleagues and followers know about our page{/ts}{if $title}:
16 <span class="bold"><a href="{$pageURL}">{$title}</a></span>
17 {else}.{/if}
18 </div>
19 <div class="crm-fb-tweet-buttons">
20 {if $emailMode eq true}
21 {*use images for email*}
22 <a href="https://twitter.com/share?url={$url|escape:'url'}&amp;text={$title}" id="crm_tweet">
23 <img title="Twitter Tweet Button" src="{$config->userFrameworkResourceURL|replace:'https://':'http://'}/i/tweet.png" width="55px" height="20px" alt="Tweet Button">
24 </a>
25 <a href="https://www.facebook.com/plugins/like.php?href={$url}" target="_blank">
26 <img title="Facebook Like Button" src="{$config->userFrameworkResourceURL|replace:'https://':'http://'}/i/fblike.png" alt="Facebook Button" />
27 </a>
28 {else}
29 {*use advanced buttons for pages*}
30 <div class="label">
31 <iframe allowtransparency="true" frameborder="0" scrolling="no"
32 src="https://platform.twitter.com/widgets/tweet_button.html?text={$title}&amp;url={$url|escape:'url'}"
33 style="width:100px; height:20px;">
34 </iframe>
35 </div>
36 <div class="label" style="width:300px;">
37 <iframe src="https://www.facebook.com/plugins/like.php?app_id=240719639306341&amp;href={$url|escape:'url'}&amp;send=false&amp;layout=standard&amp;show_faces=false&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:30px;" allowTransparency="true">
38 </iframe>
39 </div>
40 <div class="label">
41 <script src="https://platform.linkedin.com/in.js" type="text/javascript"></script>
42 <script type="IN/Share" data-url={$url} data-counter="right"></script>
43 </div>
44 {/if}
45 </div>
46 {if $pageURL}
47 {if $emailMode neq true}
48 <br/>
49 {/if}
50 <br/>
51 <div class="clear"></div>
52 <div>
53 <span class="bold">{ts}You can also share the below link in an email or on your website.{/ts}</span>
54 <br/>
55 <a href="{$pageURL}">{$pageURL}</a>
56 </div>
57 {else}
58 <div class="clear"></div>
59 {/if}
60 </div>
61
62