{{ absolute_url(path('app_home')) }}
2025-01-09T06:58:03+00:00
1.00
{{ absolute_url(path('app_changes')) }}
2025-01-09T06:58:03+00:00
1.00
{{ absolute_url(path('app_blog_home')) }}
2025-01-09T06:58:03+00:00
1.00
{{ absolute_url(path('qa_index')) }}
2025-01-09T06:58:03+00:00
0.90
{{ absolute_url(path('qa_tags')) }}
2025-01-09T06:58:03+00:00
0.80
{% for post in posts %}
{% if post.cat.code == 'plain' %}
{{ absolute_url(path('app_page',{'url':post.url})) }}
{{ twigFunctions.getctime(post.dateSubmit) }}
1.00
{% elseif post.cat.code == 'blog' %}
{{ absolute_url(path('app_blog_post',{'url':post.url})) }}
{{ twigFunctions.getctime(post.dateSubmit) }}
1.00
{% elseif post.cat.code == 'guide' %}
{{ absolute_url(path('app_guide',{'url':post.url})) }}
{{ twigFunctions.getctime(post.dateSubmit) }}
1.00
{% elseif post.cat.code == 'api' %}
{{ absolute_url(path('app_api_docs',{'url':post.url})) }}
{{ twigFunctions.getctime(post.dateSubmit) }}
1.00
{% endif %}
{% endfor %}
{% for question in questions %}
{{ absolute_url(path('qa_question_show', {'id': question.id})) }}
{{ question.createdAt|date('c') }}
0.70
{% endfor %}
{% for tag in tags %}
{{ absolute_url(path('qa_tag_questions', {'name': tag.name})) }}
2025-01-09T06:58:03+00:00
0.60
{% endfor %}