diff --git a/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php b/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php
index 61e0aea..4e59670 100644
--- a/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php
+++ b/bp-templates/bp-legacy/buddypress/members/single/notifications/notifications-loop.php
@@ -22,4 +22,4 @@
 		<?php endwhile; ?>
 
 	</tbody>
-</table>
\ No newline at end of file
+</table>
diff --git a/bp-themes/bp-default/members/single/home.php b/bp-themes/bp-default/members/single/home.php
index 39d70fb..0c48e27 100644
--- a/bp-themes/bp-default/members/single/home.php
+++ b/bp-themes/bp-default/members/single/home.php
@@ -60,6 +60,9 @@ get_header( 'buddypress' ); ?>
 				elseif ( bp_is_user_settings() ) :
 					locate_template( array( 'members/single/settings.php'  ), true );
 
+				elseif ( bp_is_user_notifications() ) :
+					locate_template( array( 'members/single/notifications.php' ), true );
+
 				// If nothing sticks, load a generic template
 				else :
 					locate_template( array( 'members/single/plugins.php'   ), true );
diff --git a/bp-themes/bp-default/members/single/notifications.php b/bp-themes/bp-default/members/single/notifications.php
new file mode 100644
index 0000000..c91d118
--- /dev/null
+++ b/bp-themes/bp-default/members/single/notifications.php
@@ -0,0 +1,39 @@
+<?php
+
+/**
+ * BuddyPress - Users Notifications
+ *
+ * @package BuddyPress
+ * @subpackage bp-legacy
+ */
+
+?>
+
+<div class="item-list-tabs no-ajax" id="subnav" role="navigation">
+	<ul>
+		<?php bp_get_options_nav(); ?>
+
+		<li id="members-order-select" class="last filter">
+			<?php bp_notifications_sort_order_form(); ?>
+		</li>
+	</ul>
+</div>
+
+<?php
+switch ( bp_current_action() ) :
+
+	// Unread
+	case 'unread' :
+		bp_get_template_part( 'members/single/notifications/unread' );
+		break;
+
+	// Read
+	case 'read' :
+		bp_get_template_part( 'members/single/notifications/read' );
+		break;
+
+	// Any other
+	default :
+		bp_get_template_part( 'members/single/plugins' );
+		break;
+endswitch;
diff --git a/bp-themes/bp-default/members/single/notifications/feedback-no-notifications.php b/bp-themes/bp-default/members/single/notifications/feedback-no-notifications.php
new file mode 100644
index 0000000..014947b
--- /dev/null
+++ b/bp-themes/bp-default/members/single/notifications/feedback-no-notifications.php
@@ -0,0 +1,29 @@
+<div id="message" class="info">
+
+	<?php if ( bp_is_current_action( 'unread' ) ) : ?>
+
+		<?php if ( bp_is_my_profile() ) : ?>
+
+			<p><?php _e( 'You have no unread notifications.', 'buddypress' ); ?></p>
+
+		<?php else : ?>
+
+			<p><?php _e( 'This member has no unread notifications.', 'buddypress' ); ?></p>
+
+		<?php endif; ?>
+			
+	<?php else : ?>
+			
+		<?php if ( bp_is_my_profile() ) : ?>
+
+			<p><?php _e( 'You have no notifications.', 'buddypress' ); ?></p>
+
+		<?php else : ?>
+
+			<p><?php _e( 'This member has no notifications.', 'buddypress' ); ?></p>
+
+		<?php endif; ?>
+
+	<?php endif; ?>
+
+</div>
diff --git a/bp-themes/bp-default/members/single/notifications/notifications-loop.php b/bp-themes/bp-default/members/single/notifications/notifications-loop.php
new file mode 100644
index 0000000..4e59670
--- /dev/null
+++ b/bp-themes/bp-default/members/single/notifications/notifications-loop.php
@@ -0,0 +1,25 @@
+<table class="notifications">
+	<thead>
+		<tr>
+			<th class="icon"></th>
+			<th class="title"><?php _e( 'Notification', 'buddypress' ); ?></th>
+			<th class="date"><?php _e( 'Date Received', 'buddypress' ); ?></th>
+			<th class="actions"><?php _e( 'Actions',    'buddypress' ); ?></th>
+		</tr>
+	</thead>
+
+	<tbody>
+
+		<?php while ( bp_the_notifications() ) : bp_the_notification(); ?>
+
+			<tr>
+				<td></td>
+				<td><?php bp_the_notification_description();  ?></td>
+				<td><?php bp_the_notification_time_since();   ?></td>
+				<td><?php bp_the_notification_action_links(); ?></td>
+			</tr>
+
+		<?php endwhile; ?>
+
+	</tbody>
+</table>
diff --git a/bp-themes/bp-default/members/single/notifications/read.php b/bp-themes/bp-default/members/single/notifications/read.php
new file mode 100644
index 0000000..85fcab7
--- /dev/null
+++ b/bp-themes/bp-default/members/single/notifications/read.php
@@ -0,0 +1,29 @@
+<?php if ( bp_has_notifications() ) : ?>
+
+	<div id="pag-top" class="pagination no-ajax">
+		<div class="pag-count" id="notifications-count-top">
+			<?php bp_notifications_pagination_count(); ?>
+		</div>
+
+		<div class="pagination-links" id="notifications-pag-top">
+			<?php bp_notifications_pagination_links(); ?>
+		</div>
+	</div>
+
+	<?php bp_get_template_part( 'members/single/notifications/notifications-loop' ); ?>
+
+	<div id="pag-bottom" class="pagination no-ajax">
+		<div class="pag-count" id="notifications-count-bottom">
+			<?php bp_notifications_pagination_count(); ?>
+		</div>
+
+		<div class="pagination-links" id="notifications-pag-bottom">
+			<?php bp_notifications_pagination_links(); ?>
+		</div>
+	</div>
+
+<?php else : ?>
+
+	<?php bp_get_template_part( 'members/single/notifications/feedback-no-notifications' ); ?>
+
+<?php endif;
\ No newline at end of file
diff --git a/bp-themes/bp-default/members/single/notifications/unread.php b/bp-themes/bp-default/members/single/notifications/unread.php
new file mode 100644
index 0000000..85fcab7
--- /dev/null
+++ b/bp-themes/bp-default/members/single/notifications/unread.php
@@ -0,0 +1,29 @@
+<?php if ( bp_has_notifications() ) : ?>
+
+	<div id="pag-top" class="pagination no-ajax">
+		<div class="pag-count" id="notifications-count-top">
+			<?php bp_notifications_pagination_count(); ?>
+		</div>
+
+		<div class="pagination-links" id="notifications-pag-top">
+			<?php bp_notifications_pagination_links(); ?>
+		</div>
+	</div>
+
+	<?php bp_get_template_part( 'members/single/notifications/notifications-loop' ); ?>
+
+	<div id="pag-bottom" class="pagination no-ajax">
+		<div class="pag-count" id="notifications-count-bottom">
+			<?php bp_notifications_pagination_count(); ?>
+		</div>
+
+		<div class="pagination-links" id="notifications-pag-bottom">
+			<?php bp_notifications_pagination_links(); ?>
+		</div>
+	</div>
+
+<?php else : ?>
+
+	<?php bp_get_template_part( 'members/single/notifications/feedback-no-notifications' ); ?>
+
+<?php endif;
\ No newline at end of file
