Skip to content

Instantly share code, notes, and snippets.

@encarsia
Last active November 29, 2019 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save encarsia/52728167ac7d2fe79caf480c291931ea to your computer and use it in GitHub Desktop.
Save encarsia/52728167ac7d2fe79caf480c291931ea to your computer and use it in GitHub Desktop.
Mastodon shortcode for Nikola (Jinja template)
{#
Template engine: Jinja2
Usage:
{{% mastodon status=https://instance.domain/@user/tootnr %}}
Optional parameters:
width (default: 600)
height (default: 333)
Example: {{% mastodon status=https://instance.domain/@user/tootnr % width=300 height=600}} will show a 300x600 frame instead of the default 600x333
#}
<iframe src="{{ status }}/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="{{ width|default("600") }}" height="{{ height|default("333") }}"</iframe>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment