{% extends "base.html" %} {% from "components/callouts.html" import warning, info %} {% block title %}{{ tool.owner }}/{{ tool.name }} - SmartTools Registry{% endblock %} {% block meta_description %}{{ tool.description or 'A SmartTools command-line tool' }}{% endblock %} {% block og_title %}{{ tool.owner }}/{{ tool.name }}{% endblock %} {% block og_description %}{{ tool.description or 'A SmartTools command-line tool' }}{% endblock %} {% block content %}

{{ tool.name }}

by {{ tool.owner }}

{% if tool.category %} {{ tool.category }} {% endif %}
{% if tool.description %}

{{ tool.description }}

{% endif %} {% if tool.tags %}
{% for tag in tool.tags.split(',') %} {{ tag.strip() }} {% endfor %}
{% endif %}
{% if tool.deprecated %} {{ warning( title='This tool is deprecated', content=tool.deprecated_message or 'This tool is no longer maintained.' ) }} {% if tool.replacement %} {{ info( title='Recommended replacement', content='Consider using ' ~ tool.replacement ~ ' instead.' ) }} {% endif %} {% endif %}
{% if tool.readme %} {{ tool.readme_html|safe }} {% else %}

About {{ tool.name }}

{{ tool.description or 'No additional documentation available.' }}

Installation

smarttools install {{ tool.owner }}/{{ tool.name }}

Usage

{{ tool.name }} --help
{% endif %}
{% endblock %}