Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added 13-activity-feed/images/alex.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 13-activity-feed/images/arthur.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 13-activity-feed/images/boris.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 13-activity-feed/images/dmitri.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 13-activity-feed/images/edward.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 13-activity-feed/images/sarah.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 13-activity-feed/images/seb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 35 additions & 18 deletions 13-activity-feed/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8" />
<title>Activity feed - Notification design</title>

<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style.css" />
</head>

<body>

<div class="navbar-lewagon">
<img src="images/logo.png" alt="logo">
<img src="images/logo.png" alt="logo" />
</div>

<div class="container">
Expand All @@ -21,12 +20,14 @@
</div>

<div class="notifications">

<div class="notification">
<img src='https://kitt.lewagon.com/placeholder/users/arthur-littm' class="avatar-large"/>
<img
src="images/edward.jpg"
class="avatar-large"
/>
<div class="notification-content">
<p><small>14th January</small></p>
<p>Arthur liked <a href="#">landing page concept</a>.</p>
<p>Edward liked <a href="#">landing page concept</a>.</p>
</div>

<div class="notification-actions">
Expand All @@ -35,7 +36,7 @@
</div>

<div class="notification">
<img src='https://kitt.lewagon.com/placeholder/users/sarahlafer' class="avatar-large"/>
<img src="images/sarah.jpg" class="avatar-large" />
<div class="notification-content">
<p><small>14th January</small></p>
<p>Sarah started to follow you.</p>
Expand All @@ -47,10 +48,13 @@
</div>

<div class="notification">
<img src='https://kitt.lewagon.com/placeholder/users/pdunleav' class="avatar-large"/>
<img
src="images/arthur.jpg"
class="avatar-large"
/>
<div class="notification-content">
<p><small>13th January</small></p>
<p>Phelim started to follow you.</p>
<p>Arthur started to follow you.</p>
</div>

<div class="notification-actions">
Expand All @@ -59,7 +63,10 @@
</div>

<div class="notification">
<img src='https://kitt.lewagon.com/placeholder/users/papillard' class="avatar-large"/>
<img
src="images/boris.jpg"
class="avatar-large"
/>
<div class="notification-content">
<p><small>10th January</small></p>
<p>Boris liked <a href="#">box shadow designs</a>.</p>
Expand All @@ -71,7 +78,10 @@
</div>

<div class="notification">
<img src='https://kitt.lewagon.com/placeholder/users/db0sch' class="avatar-large"/>
<img
src="images/dmitri.jpg"
class="avatar-large"
/>
<div class="notification-content">
<p><small>10th January</small></p>
<p>Dimitri posted a new shot <a href="#">Airbnb redesign</a>.</p>
Expand All @@ -83,10 +93,13 @@
</div>

<div class="notification">
<img src='https://kitt.lewagon.com/placeholder/users/aliceclv' class="avatar-large"/>
<img
src="images/alex.jpg"
class="avatar-large"
/>
<div class="notification-content">
<p><small>8th January</small></p>
<p>Alice liked <a href="#">landing page concept</a>.</p>
<p>Alex liked <a href="#">landing page concept</a>.</p>
</div>

<div class="notification-actions">
Expand All @@ -95,19 +108,23 @@
</div>

<div class="notification">
<img src='https://kitt.lewagon.com/placeholder/users/ssaunier' class="avatar-large"/>
<img
src="images/seb.jpg"
class="avatar-large"
/>
<div class="notification-content">
<p><small>7th January</small></p>
<p>Seb added <a href="#">dashboard designs</a> to the <a href="#">LW project ideas</a> bucket.</p>
<p>
Seb added <a href="#">dashboard designs</a> to the
<a href="#">LW project ideas</a> bucket.
</p>
</div>

<div class="notification-actions">
<a href="#">Mark as seen <i class="fas fa-check"></i></a>
</div>
</div>

</div>

</div>
</body>
</html>