Skip to content
This repository has been archived by the owner on Dec 4, 2019. It is now read-only.

Commit

Permalink
Fix image URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Feb 4, 2015
1 parent 427179a commit 0fcafec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions views/layout/partials/header.blade.php
Expand Up @@ -41,8 +41,8 @@

@if($user)
<div class="avatar">
<!-- TODO: avitar function -->
<img src="assets/img/cyrano.jpg" alt="" />
<!-- TODO: avatar function -->
<img src="{{ $asset('vendor/fluxbb/core/public/frontend/assets/img/cyrano.jpg') }}" alt="" />
</div>
@endif
</div>
Expand Down
2 changes: 1 addition & 1 deletion views/new_topic.blade.php
Expand Up @@ -13,7 +13,7 @@
<div id="post-new" class="post post-new post-bg clearfix">
<div class="author-box col-md-2 text-center">
<div class="author-name"><h4><a href="#">Username</a></h4></div>
<div class="author-avatar"><img src="assets/img/cyrano.jpg" width="140" height="140" alt="" /></div>
<div class="author-avatar"><img src="{{ $asset('vendor/fluxbb/core/public/frontend/assets/img/cyrano.jpg') }}" width="140" height="140" alt="" /></div>
</div>
<div class="post-box col-md-10">
<div class="post-meta clearfix">
Expand Down
2 changes: 1 addition & 1 deletion views/posts/list.blade.php
Expand Up @@ -3,7 +3,7 @@
<div class="author-box col-md-2 col-sm-2 col-xs-2">
<div class="author-name"><h4><a href="{{ $route('profile', ['id' => $post->poster_id]) }}">{{ $post->poster }}</a></h4></div>
<div class="author-title"><h5>{{ 'Administrator' }}</h5></div>
<div class="author-avatar"><img src="assets/img/cyrano.jpg" width="70" height="80" alt=""></div>
<div class="author-avatar"><img src="{{ $asset('vendor/fluxbb/core/public/frontend/assets/img/cyrano.jpg') }}" width="70" height="80" alt=""></div>
<div class="author-icon author-location"><a href="#" class="tip author-field" data-original-title="Location: Bergerac"></a></div>
<div class="author-icon author-registered"><a href="#" class="tip author-field" data-original-title="Member since: 1619-03-06"></a></div>
<div class="author-icon author-posts"><a href="#" class="tip author-field" data-original-title="4,815 Posts"></a></div>
Expand Down

0 comments on commit 0fcafec

Please sign in to comment.