forked from nomadcoders/vietgram
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathprofile.html
154 lines (151 loc) · 6.53 KB
/
profile.html
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Profile | Vietgram</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav class="navigation">
<div class="navigation__column">
<a href="feed.html">
<img src="images/logo.png" />
</a>
</div>
<div class="navigation__column">
<i class="fa fa-search"></i>
<input type="text" placeholder="Search">
</div>
<div class="navigation__column">
<ul class="navigations__links">
<li class="navigation__list-item">
<a href="explore.html" class="navigation__link">
<i class="fa fa-compass fa-lg"></i>
</a>
</li>
<li class="navigation__list-item">
<a href="#" class="navigation__link">
<i class="fa fa-heart-o fa-lg"></i>
</a>
</li>
<li class="navigation__list-item">
<a href="profile.html" class="navigation__link">
<i class="fa fa-user-o fa-lg"></i>
</a>
</li>
</ul>
</div>
</nav>
<main id="profile">
<header class="profile__header">
<div class="profile__column">
<img src="images/avatar.jpg" />
</div>
<div class="profile__column">
<div class="profile__title">
<h3 class="profile__username">serranoarevalo</h3>
<a href="edit-profile.html">Edit profile</a>
<i class="fa fa-cog fa-lg"></i>
</div>
<ul class="profile__stats">
<li class="profile__stat">
<span class="stat__number">333</span> posts
</li>
<li class="profile__stat">
<span class="stat__number">1234</span> followers
</li>
<li class="profile__stat">
<span class="stat__number">36</span> following
</li>
</ul>
<p class="profile__bio">
<span class="profile__full-name">
Nicolás Serrano Arévalo
</span> Doing whatever and eating Pho Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Ducimus suscipit praesentium eveniet quibusdam ipsam omnis fugit. Tempore voluptates ratione recusandae
natus illo perspiciatis suscipit, odio consequuntur quasi obcaecati minus! Omnis.
<a href="#">serranoarevalo.com</a>
</p>
</div>
</header>
<section class="profile__photos">
<div class="profile__photo">
<img src="images/feedPhoto.jpg" />
<div class="profile__photo-overlay">
<span class="overlay__item">
<i class="fa fa-heart"></i>
486
</span>
<span class="overlay__item">
<i class="fa fa-comment"></i>
344
</span>
</div>
</div>
<div class="profile__photo">
<img src="images/feedPhoto.jpg" />
<div class="profile__photo-overlay">
<span class="overlay__item">
<i class="fa fa-heart"></i>
486
</span>
<span class="overlay__item">
<i class="fa fa-comment"></i>
344
</span>
</div>
</div>
<div class="profile__photo">
<img src="images/feedPhoto.jpg" />
<div class="profile__photo-overlay">
<span class="overlay__item">
<i class="fa fa-heart"></i>
486
</span>
<span class="overlay__item">
<i class="fa fa-comment"></i>
344
</span>
</div>
</div>
<div class="profile__photo">
<img src="images/feedPhoto.jpg" />
<div class="profile__photo-overlay">
<span class="overlay__item">
<i class="fa fa-heart"></i>
486
</span>
<span class="overlay__item">
<i class="fa fa-comment"></i>
344
</span>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__column">
<nav class="footer__nav">
<ul class="footer__list">
<li class="footer__list-item"><a href="#" class="footer__link">About Us</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Support</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Blog</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Press</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Api</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Jobs</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Privacy</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Terms</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Directory</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Language</a></li>
</ul>
</nav>
</div>
<div class="footer__column">
<span class="footer__copyright">© 2017 Vietgram</span>
</div>
</footer>
</body>
</html>