forked from sawirricardo/realworld-tall-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ac9ff5
commit 0db0716
Showing
7 changed files
with
111 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,87 @@ | ||
<div> | ||
{{-- Close your eyes. Count to one. That is how long forever feels. --}} | ||
<div class="profile-page"> | ||
|
||
<div class="user-info"> | ||
<div class="container"> | ||
<div class="row"> | ||
|
||
<div class="col-xs-12 col-md-10 offset-md-1"> | ||
<img src="{{ $user['image'] }}" class="user-img" /> | ||
<h4>{{ $user['name'] }}</h4> | ||
<p> | ||
{{ $user['bio'] }} | ||
</p> | ||
<button class="btn btn-sm btn-outline-secondary action-btn"> | ||
<i class="ion-plus-round"></i> | ||
| ||
Follow {{ $user['name'] }} | ||
</button> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
|
||
<div class="col-xs-12 col-md-10 offset-md-1"> | ||
<div class="articles-toggle"> | ||
<ul class="nav nav-pills outline-active"> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="">My Articles</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="">Favorited Articles</a> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="article-preview"> | ||
<div class="article-meta"> | ||
<a href=""><img src="http://i.imgur.com/Qr71crq.jpg" /></a> | ||
<div class="info"> | ||
<a href="" class="author">Eric Simons</a> | ||
<span class="date">January 20th</span> | ||
</div> | ||
<button class="btn btn-outline-primary btn-sm pull-xs-right"> | ||
<i class="ion-heart"></i> 29 | ||
</button> | ||
</div> | ||
<a href="" class="preview-link"> | ||
<h1>How to build webapps that scale</h1> | ||
<p>This is the description for the post.</p> | ||
<span>Read more...</span> | ||
</a> | ||
</div> | ||
|
||
<div class="article-preview"> | ||
<div class="article-meta"> | ||
<a href=""><img src="http://i.imgur.com/N4VcUeJ.jpg" /></a> | ||
<div class="info"> | ||
<a href="" class="author">Albert Pai</a> | ||
<span class="date">January 20th</span> | ||
</div> | ||
<button class="btn btn-outline-primary btn-sm pull-xs-right"> | ||
<i class="ion-heart"></i> 32 | ||
</button> | ||
</div> | ||
<a href="" class="preview-link"> | ||
<h1>The song you won't ever stop singing. No matter how hard you try.</h1> | ||
<p>This is the description for the post.</p> | ||
<span>Read more...</span> | ||
<ul class="tag-list"> | ||
<li class="tag-default tag-pill tag-outline">Music</li> | ||
<li class="tag-default tag-pill tag-outline">Song</li> | ||
</ul> | ||
</a> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> |