Skip to content

Commit 36c4ba4

Browse files
authored
Merge pull request #52 from phprn/github-pages
Fix typo and final images path
2 parents 45ff064 + 0d9f73d commit 36c4ba4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/_shared/schedule.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175

176176
<div>
177177
@foreach ($event->speakersPictures as $picture)
178-
<img src="{{ $picture }}" class="img-thumbnail img-fluid rounded-circle" width="100">
178+
<img src="{{ url($picture) }}" class="img-thumbnail img-fluid rounded-circle" width="100">
179179
@endforeach
180180
</div>
181181

source/about.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="container">
66
<div class="row align-items-center justify-content-center">
77
<div class="col-md-10 text-center" data-aos="fade">
8-
<h1 class="mb-4">A conferênciaaaa</h1>
8+
<h1 class="mb-4">A conferência</h1>
99
</div>
1010
</div>
1111
</div>
@@ -122,7 +122,7 @@
122122
@foreach ($organizers as $organizer)
123123
<div class="col-md-6 col-lg-3 col-sm-12 mb-2">
124124
<div class="organizer text-left">
125-
<img src="{{ $organizer->image }}" alt="Foto de {{ $organizer->first_name }}" class="img-fluid">
125+
<img src="{{ url($organizer->image) }}" alt="Foto de {{ $organizer->first_name }}" class="img-fluid">
126126
<h3 class="heading mb-0 mt-6">
127127
<a href="{{ $organizer->website }}" target="_new">
128128
<span>{{ $organizer->first_name }}</span> {{ $organizer->last_name }}

0 commit comments

Comments
 (0)