forked from autonomic-cooperative/cotech-website
Fix image URLs for deployment on Github
This commit is contained in:
@ -55,7 +55,7 @@ layout: home
|
||||
<div class="column">
|
||||
{% for coop in site.coops %}
|
||||
<a class="coop-thumb" href="{{ coop.url | relative_url }}">
|
||||
<div class="coop-thumb-img has-tip tip-bottom radius" style="background-image: url(/images/coops/{{ coop.slug }}.png)" data-tooltip aria-haspopup="true" title="{{ coop.name }}"></div>
|
||||
<div class="coop-thumb-img has-tip tip-bottom radius" style="background-image: url({{ site.github.url }}/images/coops/{{ coop.slug }}.png)" data-tooltip aria-haspopup="true" title="{{ coop.name }}"></div>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
@ -81,7 +81,7 @@ layout: home
|
||||
<div class="row small-up-2 medium-up-3 large-up-6">
|
||||
{% for client in site.clients %}
|
||||
<div class="column">
|
||||
<div class="client-thumb" style="background-image: url(/images/clients/{{ client.slug }}.png)"></div>
|
||||
<div class="client-thumb" style="background-image: url({{ site.github.url }}/images/clients/{{ client.slug }}.png)"></div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
@ -100,7 +100,7 @@ layout: home
|
||||
{% for service in site.services %}
|
||||
<div class="column">
|
||||
<a href="{{ service.url | relative_url }}" class="service-thumb">
|
||||
<div class="service-thumb-img float-center" style="background-image: url(/images/services/{{ service.slug }}.png)"></div>
|
||||
<div class="service-thumb-img float-center" style="background-image: url({{ site.github.url }}/images/services/{{ service.slug }}.png)"></div>
|
||||
<h5>{{ service.name }}</h5>
|
||||
</a>
|
||||
</div>
|
||||
@ -120,7 +120,7 @@ layout: home
|
||||
{% for technology in site.technologies %}
|
||||
<div class="column">
|
||||
<a href="{{ technology.url | relative_url }}" class="technology-thumb">
|
||||
<div class="technology-thumb-img" style="background-image: url(/images/technologies/{{ technology.slug }}.png)"></div>
|
||||
<div class="technology-thumb-img" style="background-image: url({{ site.github.url }}/images/technologies/{{ technology.slug }}.png)"></div>
|
||||
<h5>{{ technology.name }}</h5>
|
||||
</a>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user