forked from davidpdrsn/Socially-fitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.php
121 lines (114 loc) · 4.7 KB
/
profile.php
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
$page_name = "profile";
include "inc/head.php";
?>
<div id="profile" class="clearfix">
<div class="profile-picture">
<img src="http://www.placekitten.com/74/74/" alt="Profile Picture" />
</div>
<div class="profile-name">
<h3>Træner Jørgen</h3>
</div>
<div class="social-activity">
<a href=""><span class="workouts">13.921</span>Workouts</a>
<a href=""><span class="followers">998.900</span>Followers</a>
<a href=""><span class="following">22.600</span>Following</a>
</div>
</div>
<div class="profile-follow clearfix">
<a href="" class="follow">Follow</a>
<!-- <a href="" class="unfollow">Unfollow</a> -->
</div>
<div id="profile-workouts">
<div class="log clearfix">
<div class="log-header clearfix">
<div class="log-time">
<p>15.02</p>
</div> <!-- .log-time -->
<div class="profile-picture">
<img src="http://placekitten.com/48/48/" alt="profile picture" class="picture" />
</div> <!-- .profile-picture -->
<div class="log-title">
<p class="profile-name">Navn</p>
<p>Workout navn</p>
</div> <!-- .log-title -->
</div> <!-- .log-header -->
<div class="log-footer">
<span class="log-expand">Show more!</span>
<div class="expanded-log">
<div class="expanded-log-text clearfix">
<strong>Brench press</strong>
<p>8 reps, 95kg, 3 sets</p>
<strong>Brench press</strong>
<p>8 reps, 95kg, 3 sets</p>
<strong>Brench press</strong>
<p>8 reps, 95kg, 3 sets</p>
</div> <!-- .expanded-log-text -->
<p class="log-favorite"><a href=""><span class="glyph general">c</span> Favorite</a></p>
<p class="log-comment"><a href=""><span class="glyph social">w</span> Comment</a></p>
<div class="commenting-log clearfix">
<form action="">
<input type="text" name="writing-comment-log" placeholder="Wicked training bro!" id="writing-comment-log">
</form>
<div class="log-comments-list">
<h4>Comments</h4>
<div class="log-single-comment">
<span class="comment-time">16.04</span><strong>Træner Jørgen</strong>
<p>Det må jeg nok sige. Du har løftet vægte jo!</p>
</div> <!-- .log-single-comment -->
<div class="log-single-comment">
<strong>Gurli Fit</strong><span class="comment-time">16.04</span>
<p>Vis mig din mund.</p>
</div> <!-- .log-single-comment -->
</div> <!-- .log-comments-lits -->
</div> <!-- .commenting-log -->
</div> <!-- .expanded-log -->
</div> <!-- .log-footer -->
</div> <!-- .log -->
<div class="log clearfix">
<div class="log-header clearfix">
<div class="log-time">
<p>15.02</p>
</div> <!-- .log-time -->
<div class="profile-picture">
<img src="http://placekitten.com/48/48/" alt="profile picture" class="picture" />
</div> <!-- .profile-picture -->
<div class="log-title">
<p class="profile-name">Navn</p>
<p>Workout navn</p>
</div> <!-- .log-title -->
</div> <!-- .log-header -->
<div class="log-footer">
<span class="log-expand">Show more!</span>
<div class="expanded-log">
<div class="expanded-log-text clearfix">
<strong>Brench press</strong>
<p>8 reps, 95kg, 3 sets</p>
<strong>Brench press</strong>
<p>8 reps, 95kg, 3 sets</p>
<strong>Brench press</strong>
<p>8 reps, 95kg, 3 sets</p>
</div> <!-- .expanded-log-text -->
<p class="log-favorite"><a href=""><span class="glyph general">c</span> Favorite</a></p>
<p class="log-comment"><a href=""><span class="glyph social">w</span> Comment</a></p>
<div class="commenting-log clearfix">
<form action="">
<input type="text" name="writing-comment-log" placeholder="Wicked training bro!" id="writing-comment-log">
</form>
<div class="log-comments-list">
<h4>Comments</h4>
<div class="log-single-comment">
<span class="comment-time">16.04</span><strong>Træner Jørgen</strong>
<p>Det må jeg nok sige. Du har løftet vægte jo!</p>
</div> <!-- .log-single-comment -->
<div class="log-single-comment">
<strong>Gurli Fit</strong><span class="comment-time">16.04</span>
<p>Vis mig din mund.</p>
</div> <!-- .log-single-comment -->
</div> <!-- .log-comments-lits -->
</div> <!-- .commenting-log -->
</div> <!-- .expanded-log -->
</div> <!-- .log-footer -->
</div> <!-- .log -->
</div> <!-- #profile-workouts -->
<?php include "inc/footer.php"; ?>