camaleon-8.x-1.x-dev/templates/user/forum-submitted.html.twig
templates/user/forum-submitted.html.twig
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | {# /** * @file * Theme override for a forum post submission string. * * The submission string indicates when and by whom a topic was submitted. * * Available variables: * - author: The author of the post. * - time: How long ago the post was created. * - topic: An object with the raw data of the post. Potentially unsafe. Be * sure to clean this data before printing. * * @see template_preprocess_forum_submitted() */ #} {% if time %} <span class = "submitted" >{% trans %}By {{ author }} {{ time }} ago{% endtrans %}</span> {% else %} {{ 'n/a' |t }} {% endif %} |