hello,
I have a huge site with more than 1500 pages.
On each of them I wold like add a 'see also' section which lists all related pages, like
## See also
<ul>
{% for post in taxonomy.findTaxonomy({'category':'docs'}) %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
<ul>
A macro is probably the best choice something like:
{% macro see_also(category) %}
etc.
I have 2 precises questions:
1) in which file should I create this macro and in which folder?
2) how to call the macro inside the pages (sorry for this newbie question, but it's not so clear for me in the doc)
thanks for your help
senso++++