> For the complete documentation index, see [llms.txt](https://docs.devhub.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devhub.com/themes-and-custom-templates/advanced-examples/social-sharing-links.md).

# Social sharing links

The social networks allow you to pass a title/text to pre-fill the share link. The below use the `site.title` for this message, but that can be replaced with what you want.

```markup
# twitter
<a href="https://twitter.com/?status={{ '%s %s'|format(site.title, site.formatted_url|urlencode) }}" target="_blank">Twitter</a><br>

# facebook
<a href="https://www.facebook.com/sharer.php?u={{ site.formatted_url|urlencode }}&amp;t={{ site.title|urlencode }}">Facebook</a><br>

# linkedin
<a href="https://www.linkedin.com/shareArticle?mini=true&amp;url={{ site.formatted_url|urlencode }}&amp;title={{ site.title|urlencode }}&amp;source=LinkedIn">LinkedIn</a><br>
```
