Last active
November 29, 2019 16:24
-
-
Save encarsia/da438431ca42781045b4d63ac1b9ea5c to your computer and use it in GitHub Desktop.
Mastodon shortcode for Nikola (Mako template)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%doc> | |
Template engine: Mako | |
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 | |
</%doc> | |
% if width is UNDEFINED: | |
<% w = 600 %> | |
% else: | |
<% w = width %> | |
% endif | |
% if height is UNDEFINED: | |
<% h = 333 %> | |
% else: | |
<% h = height %> | |
% endif | |
<iframe src="${status}/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width=${w} height=${h}"</iframe> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment