14 lines
479 B
HTML
14 lines
479 B
HTML
{% macro guide_box(guide, section) %}
|
|
{% if guide %}
|
|
<div class="card mb-4 border-info">
|
|
<div class="card-header bg-info text-white d-flex justify-content-between align-items-center">
|
|
<span>{{ guide.title }}</span>
|
|
<a href="{{ url_for('main.guide', section=section) }}" class="btn btn-sm btn-light">راهنمای کامل</a>
|
|
</div>
|
|
<div class="card-body guide-content small">
|
|
{{ guide.summary }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endmacro %}
|