{% if branding.logo_path %} Logo {% endif %}
Version: {{ version | default("1.0") }}
Author: {{ author | default("") }}
Date: {{ date | default("") }}

{{ title | default("Technical Report") }}

{% if introduction %}

Introduction

{{ introduction }}

{% endif %} {% if sections %} {% for section in sections %}

{{ section.title }}

{{ section.content }}
{% endfor %} {% endif %} {% if code_samples %}

Code Examples

{% for sample in code_samples %}

{{ sample.language | default("Code") }} {{ sample.description }}

{{ sample.code }}
{% endfor %} {% endif %} {% if conclusion %}

Conclusion

{{ conclusion }}

{% endif %} {% if references %}

References

    {% for ref in references %}
  1. {{ ref }}
  2. {% endfor %}
{% endif %}