-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathshare.html
31 lines (30 loc) · 1.75 KB
/
share.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div id="share">
<h2>Share the fun!</h2>
<ul>
<li class="reddit">
<a href="http://www.reddit.com/submit?url={{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url | uri_escape}}&title={{ page.title | default:"" | uri_escape }}" target="_blank">
{% include share-icon-reddit.svg %}
</a>
</li>
<li class="hn">
<a href="http://news.ycombinator.com/submitlink?u={{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url | uri_escape}}&t={{ page.title | default:"" | uri_escape}}" target="_blank">
{% include share-icon-hn.svg %}
</a>
</li>
<li class="twitter">
<a href="https://twitter.com/intent/tweet?via={{ site.twitter_username }}&url={{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url | uri_escape}}&text={{ page.title | default:"" | uri_escape}}" target="_blank">
{% include share-icon-twitter.svg %}
</a>
</li>
<li class="facebook">
<a href="http://www.facebook.com/sharer.php?u={{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url | uri_escape}}&t={{ page.title | default:"" | uri_escape}}" target="_blank">
{% include share-icon-facebook.svg %}
</a>
</li>
<li class="linkedin">
<a href="http://www.linkedin.com/shareArticle?url={{ site.twitter_username }}&url={{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url | uri_escape}}&title={{ page.title | default:"" | uri_escape}}" target="_blank">
{% include share-icon-linkedin.svg %}
</a>
</li>
</ul>
</div>