Page 1 of 1

image not showing when using feilds() in bolt CMS

Posted: Tue Oct 25, 2016 3:14 am
by gautamz07
I have the following code in my record twig file.

Code: Select all

<article class="indivisual-article-writeup">	
<h1>{{ record.title }}</h1>
  {# Output all fields, in the order as defined in the contenttype.
       To change the generated html and configure the options, see:
       https://docs.bolt.cm/templating/fields-tag #}
    {{ fields() }}

    {# Uncomment this if you wish to dump the entire record to the client, for debugging purposes.
        {{ dump(record) }}
    #}
</article>
Now one of the elements of {{ fields() }} is an image and so i get a broken link.

Whats the remedy to this ?

Re: image not showing when using feilds() in bolt CMS

Posted: Wed Nov 02, 2016 11:50 pm
by gautamz07
I even added an image to the about us block , now when i just wanted to output the feilds of the about-us record so i added the following code to test it:

Code: Select all

 {% setcontent block = "block/about-us" %}
{{ fields(block) }}
Now even here the image feild shows as a broken like , but when i have my CMS uploaded to the server everything seems to work fine. Why is this happening ??