index.blade.php 1.94 KB
@extends('layouts.profile')

@section('profile')
	<div id="aboutme" class="clearfix rb-7px">
		<ul class="lfloat">
			@if ($fullname)
				<li>
					<span class="inner">Full Name</span><span class="outer">{{ $fullname }}</span>
				</li>
			@endif
			
			@if ($dob)
				<li>
					<span class="inner">Birthday</span><span class="outer">{{ $dob }}</span>
				</li>
			@endif
			
			@if ($gender)
				<li>
					<span class="inner">Gender</span><span class="outer">{{ $gender }}</span>
				</li>
			@endif
			
			@if ($location)
				<li>
					<span class="inner">Location</span><span class="outer">{{ $location }}</span>
				</li>
			@endif
		</ul>

		<ul class="rfloat">
			<li>
				<span class="inner long">Club:</span><span class="outer">{{ $clubTeam }}</span>
			</li>
			<li>
				<span class="inner long">National Team:</span><span class="outer">{{ $nationalTeam }}</span>
			</li>
		</ul>

		@if ($website || $bioAbout)
			<ul class="clear mt10">
				@if ($website)
					<li>
						<span class="inner">Website</span><span class="outer website">{{ $website }}</span>
					</li>
				@endif

				@if ($bioAbout)
					<li>
						<span class="inner">Bio/About</span><span class="outer bioAbout">{{ $bioAbout }}</span>
					</li>
				@endif
			</ul>
		@endif
	</div>
		
	<div id="ps">
		<div class="ps-wrap clearfix">
			<div class="rank-box cs rb-5px">
				<div class="value">{{ $votesScore }}</div>
				<div class="label">Comments Score</div>
			</div>
		</div>
	</div>

	@if ($bestComment)
		<div id="topRatedComment" class="round_border_section">
			<div><div class="round_section_title">Top Rated Comment</div></div>
			<div class="comment-text markdown-view">
				{!! $bestComment->html !!}
			</div>
		</div>
	@endif

	@if ($worstComment)
		<div id="topRatedComment" class="round_border_section">
			<div><div class="round_section_title">Worst Rated Comment</div></div>
			<div class="comment-text markdown-view">
				{!! $worstComment->html !!}
			</div>
		</div>
	@endif
@endsection