 Issue 29370597:
  Issue 4687 - Add Context Function get_pages_metadata to Test Site  (Closed)
    
  
    Issue 29370597:
  Issue 4687 - Add Context Function get_pages_metadata to Test Site  (Closed) 
  | Index: tests/test_site/pages/sitemap.tmpl | 
| =================================================================== | 
| new file mode 100644 | 
| --- /dev/null | 
| +++ b/tests/test_site/pages/sitemap.tmpl | 
| @@ -0,0 +1,17 @@ | 
| +template = empty | 
| +product = foo | 
| +title = test_metadata | 
| +tags = popular, bar | 
| +<h1> Unfiltered </h1> | 
| +<ul> | 
| + {%- for unfiltered_page in get_pages_metadata() -%} | 
| +<li>{{ unfiltered_page }} </li> | 
| +{%- endfor %} | 
| +</ul> | 
| + | 
| +<h1> Filtered </h1> | 
| +<ul> | 
| +{%- for page in get_pages_metadata({'tags': 'popular, bar'}) -%} | 
| 
Vasily Kuznetsov
2017/01/11 10:52:44
I see you changed the API a little from what is de
 
Jon Sonesen
2017/01/11 17:37:04
Acknowledged.
 | 
| +<li> {{ page }} </li> | 
| +{%- endfor %} | 
| +</ul> |