Initial commit

This commit is contained in:
2026-06-03 17:33:19 +03:30
commit 9608342428
48 changed files with 3562 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{% 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 %}