Social network#

Connect and engage with your audience through social networks.


Supported Networks#

To activate the links, add the corresponding URLs to your html_theme_options in conf.py:

html_theme_options = {
    # Development platforms
    "github_url": "https://github.com/lepture/shibuya",
    "gitlab_url": "https://gitlab.com/gitlab-org/gitlab",
    "bitbucket_url": "https://bitbucket.org/sonarsource/sonarqube-scan",

    # Chat & Community
    "discord_url": "https://discord.gg/example",
    "slack_url": "https://example.com/join/slack",

    # Social & Microblogging
    "x_url": "https://x.com/lepture",
    "mastodon_url": "https://mas.to/@trumpet",
    "bluesky_url": "https://bsky.app/profile/lepture.com",

    # Content & Professional
    "youtube_url": "https://youtube.com/@username",
    "reddit_url": "https://www.reddit.com/r/flask",
    "linkedin_url": "https://www.linkedin.com/company/microsoft",
}

Deprecated Options#

Deprecated since version 2026.7.8: twitter_url is deprecated. Please use x_url instead.

Deprecated since version 2026.7.8: twitter_site and twitter_creator (used for Twitter cards) are deprecated and no longer supported.

Custom networks#

If you need to add social networks that Shibuya theme doesn’t contain, you can custom it with partials/nav-socials.html and partials/foot-socials.html:

_templates/partials/nav-socials.html#
<div class="sy-head-socials">
  {%- include "components/nav-socials.html" -%}
  <a href="your-social-network-url" aria-label="Your Social network">
    <svg>...</svg>
  </a>
</div>
_templates/partials/foot-socials.html#
<div class="sy-foot-socials">
  {%- include "components/foot-socials.html" -%}
  <a href="your-social-network-url" aria-label="Your Social network">
    <svg>...</svg>
  </a>
</div>