I have added the images folder inside my pages folder, now in my template that loads each indivisual blog post , i have the following code:
{% set blog_image = page.find('/images').media['indivisual-article-banner.jpg'] %}
this does't seem to work though as my blog image is not loaded at all.
How how do i retrieve my image saved in my images folder , also , i'd like to conditionally load this image I.E. check if the page header has a banner image set , and if not load the above generic header , so i guess i will need a or statement , i can check if the page has a header image by doing the following: page.header.header_image , but how do i pull up the generic header ?
EDIT::- i found this media object meathod, not ure how do i use it though !