forked from CodewarsClone/Codewars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolutions.html
More file actions
37 lines (33 loc) · 1.42 KB
/
Copy pathsolutions.html
File metadata and controls
37 lines (33 loc) · 1.42 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
<section class="solutions" ng-init="init()">
<!-- THIS IS IN HERE FROM WHEN I THOUGHT THE SOLUTIONS PAGE WOULD BE SPECIFIC TO THE USER. -->
<!-- <div class="solutions-upper-div any-solutions-div">
<div class="solutions-upper-left">
<img id="solutions-profile-pic" src="{{user.picture_url}}" alt="Here's where your face should be">
</div>
<div class="solutions-upper-main">
<div class="solutions-upper-upper">
<img id="solutions-rank-icon" src="./assets/imgs/6_kyu_icon.png" alt="Rank: 6_kyu">
<h2 class="font20-reg">{{user.username}}</h2>
<p class="font14-lit-gray">Honor</p>
</div>
<div class="solutions-upper-mid">
<p class="font14-reg-efefef">Tons of info goes here</p>
</div>
<div class="solutions-upper-bottom">
<button>View Profile Badges</button>
</div>
</div>
</div> END SOLUTIONS UPPER DIV-->
<div class="solutions-main any-solutions-div">
<div class="solutions-main-head">
<img id="difficulty-icon" src="./assets/imgs/{{kataById.kyu}}_kyu_icon.png" alt="{{kataById.kyu}}_kyu">
<p class="font17-reg">{{kataById.name}}</p>
</div>
<div class="all-solutions" ng-repeat="solution in kataSolutions">
<p class="font15-reg">JavaScript:</p>
<div class="solution-text">
<p class="font15-reg" color-directive>{{solution.script}}</p>
</div>
</div>
</div> <!--END SOLUTIONS MAIN-->
</section>