{% extends "base.html" %} {% block title %}Embed Template: {{ feed.title if feed.title else feed.url }} | discord-rss-bot{% endblock title %} {% block description %}Customize the Discord embed layout, colors, and media for {{ feed.title if feed.title else feed.url }}.{% endblock description %} {% block content %}

  • {% raw %} {{feed_author}} {% endraw %} {{feed.authors_str}}
  • {% raw %} {{feed_added}} {% endraw %} {{feed.added}}
  • {% raw %} {{feed_last_exception}} {% endraw %} {{feed.last_exception}}
  • {% raw %} {{feed_last_updated}} {% endraw %} {{feed.last_updated}}
  • {% raw %} {{feed_link}} {% endraw %} {{feed.link}}
  • {% raw %} {{feed_subtitle}} {% endraw %} {{feed.subtitle}}
  • {% raw %} {{feed_title}} {% endraw %} {{feed.title}}
  • {% raw %} {{feed_updated}} {% endraw %} {{feed.updated}}
  • {% raw %} {{feed_updates_enabled}} {% endraw %} {{feed.updates_enabled}}
  • {% raw %} {{feed_url}} {% endraw %} {{feed.url}}
  • {% raw %} {{feed_user_title}} {% endraw %} {{feed.user_title}}
  • {% raw %} {{feed_version}} {% endraw %} {{feed.version}}

  • {% if entry %}
  • {% raw %} {{entry_added}} {% endraw %} {{entry.added}}
  • {% raw %} {{entry_author}} {% endraw %} {{entry.authors_str}}
  • {% if entry.content %}
  • {% raw %} {{entry_content}} {% endraw %} {{entry.content[0].value|discord_markdown}}
  • {% raw %} {{entry_content_raw}} {% endraw %} {{entry.content[0].value}}
  • {% endif %}
  • {% raw %} {{entry_id}} {% endraw %} {{entry.id}}
  • {% raw %} {{entry_important}} {% endraw %} {{entry.important}}
  • {% raw %} {{entry_link}} {% endraw %} {{entry.link}}
  • {% raw %} {{entry_published}} {% endraw %} {{entry.published}}
  • {% raw %} {{entry_read}} {% endraw %} {{entry.read}}
  • {% raw %} {{entry_read_modified}} {% endraw %} {{entry.read_modified}}
  • {% if entry.summary %}
  • {% raw %} {{entry_summary}} {% endraw %} {{entry.summary|discord_markdown}}
  • {% raw %} {{entry_summary_raw}} {% endraw %} {{entry.summary}}
  • {% endif %}
  • {% raw %} {{entry_title}} {% endraw %} {{entry.title}}
  • {% raw %} {{entry_text}} {% endraw %} {{ entry.content[0].value|discord_markdown if entry and entry.content else (entry.summary|discord_markdown if entry and entry.summary else '') }}
  • {% raw %} {{entry_updated}} {% endraw %} {{entry.updated}}

  • {% raw %} {{image_1}} {% endraw %} {{ first_image }}
  • {% if extension_variables %}
  • Extension variables (from enabled extensions):
  • {% for var_name in extension_variables %}
  • {% raw %}{{{% endraw %}{{ var_name }}{% raw %}}}{% endraw %} {% if var_name in extension_values and extension_values[var_name] %} {{ extension_values[var_name] }} {% else %} (empty) {% endif %}
  • {% endfor %} {% endif %}
{% else %} Something went wrong, there was no entry found. If this feed has entries and you still see this message, please contact the developer. {% endif %}
  • You can use \n to create a new line.
  • You can remove the embed from links by adding < and > around the link. (For example <{% raw %}{{entry_link}}{% endraw %}>)
Use {% raw %}{{image_1}}{% endraw %} to use the first image URL found in the entry. You can also configure how many images gets sent via the feed page.
{% if is_steam_feed %}
{% endif %}
{% endblock content %}