vivkay / ffi

Redesign of Fauna & Flora nonprofit website
http://vivkay.github.io/ffi
0 stars 0 forks source link

disappearing images #39

Closed vivkay closed 8 years ago

vivkay commented 8 years ago

Hi @thomasjbradley,

On our blog page, we have images that appear on our local computers, but which don't appear on the live site even after syncing. This happened last week – the images disappared for a few days and then magically re-appeared. Now they've disappeared again and we're worried they'll be gone when our assignment is graded – also, it's befuddling not knowing where they keep wandering off to! Any ideas for this one?

----------------------Local view: ------------------------------

screen shot 2016-03-07 at 10 33 22 pm

----------------------Live view: ------------------------------------

screen shot 2016-03-07 at 10 33 31 pm

-------------Text Editor----------------- 12825124_10153816278911391_2025418850_n

vivkay commented 8 years ago

…I saw that screenshot (that's from our jekyll build _blog)...and thought "is this a {{site.baseurl}} issue perhaps?", but when I checked the source code this is what we have:

<div class="grid">
  <div class="unit unit-xs-1 island-1-2">
    <h4>Recent Posts</h4>
  </div>
  {% for post in site.posts %}
  <ul>
    <a class="remove-style" href="{{base.url}}/{{post.link}}">
      <li>
        <div class="unit unit-xs-1 unit-s-1 unit-m-1-2 unit-l-1-2 island">
          <img class="blog-thumb" src="{{base.url}}/img/{{post.image}}">
        </div>
        <div class="unit unit-xs-1 unit-s-1 unit-m-1-2 unit-l-1-2 island">
          <h3 class="push-none blog-title">{{post.title}}</h3>
          <p class="author">{{post.author}}</p>
          <p class="excerpt">{{post.meta}}</p>
          <a class="btn-coral" href="#">Read More</a>
        </div>
      </li>
    </a>
  </ul>
  {% endfor %}
</div>

So it can't be that? can it?

vivkay commented 8 years ago

OH I have {{base.url}} instead of {{site.baseurl}}. WHOOPSIES!

vivkay commented 8 years ago

…darn. that didn't fix it. Are we getting warmer dya think @thomasjbradley? #mystery

vivkay commented 8 years ago

fixed!