Skip to content

Commit

Permalink
Fix image links
Browse files Browse the repository at this point in the history
  • Loading branch information
saukijan committed Jan 25, 2024
2 parents 1b4f2f6 + 3ccf26c commit 59939a8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _includes/card.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% if include.fa_icon %}
<i class="fas {{ include.fa_icon }} fa-4x colored-fa"></i>
{% elsif include.icon %}
<figure class="image is-128x128">
<figure class="image is-64x64">
<img src="{{ site.baseurl }}/{{ include.icon }}">
</figure>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/cards.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1 id="{{ item.title | replace: ' ', '_'}}" class="title stag-background p-4">{
<div class="card-content">
<div class="columns">
{% if item.image %}
<div class="column {% if item.gap %} {{ item.gap }}-desktop {% endif %}">
<div class="column {% if item.gap %} {{ item.gap }}-desktop {% endif %} centered">
{% include image-modal.html link=item.image width=item.width height=item.height %}
</div>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="navbar-brand">
<a href="{{ site.baseurl }}/" class="navbar-item p-0 image">
{% if site.logo %}
<img class="has-ratio" src="{{site.baseurl}}/{{ site.logo }}" width="300" height="500" alt="Logo">
<img class="has-ratio" src="{{ site.logo | absolute_url }}" width="300" height="500" alt="Logo">
{% else %}
{{ site.title }}
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/hero.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1 class="title">{{ page.title }}</h1>
<div class="level-right py-0">
{% if page.hero_logo %}
<figure class="image is-96x96 is-vertical-center">
<img src="{{site.baseurl}}/{{ page.hero_logo }}">
<img src="{{ page.hero_logo | absolute_url }}">
</figure>
{% endif %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion assets/css/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $stag-cyan: #00ACf1;
}

.narrow {
max-width: 1450px;
max-width: 1000px;
}

.responsive {
Expand Down

0 comments on commit 59939a8

Please sign in to comment.