index.blade.php
1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@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