@@ -3,6 +3,7 @@ import times from 'lodash/utility/times';
3
3
import url from 'url' ;
4
4
5
5
import Main from 'components/main' ;
6
+ import MobileBackToSidebar from 'components/mobile-back-to-sidebar' ;
6
7
import InfiniteList from 'components/infinite-list' ;
7
8
import ListItem from 'reader/list-item' ;
8
9
import Icon from 'reader/list-item/icon' ;
@@ -127,17 +128,21 @@ const RecommendedForYou = React.createClass( {
127
128
render ( ) {
128
129
return (
129
130
< Main className = "recommended-for-you" >
131
+ < MobileBackToSidebar >
132
+ < h1 > { this . translate ( 'Recommendations' ) } </ h1 >
133
+ </ MobileBackToSidebar >
134
+
130
135
< h2 className = "reader-recommended__heading" > { this . translate ( 'We think you\'ll like' ) } </ h2 >
131
136
< InfiniteList
132
- items = { this . state . recommendations }
133
- fetchingNextPage = { this . state . fetching }
134
- lastPage = { this . state . recommendations && this . state . recommendations . length >= 100 }
135
- guessedItemHeight = { 300 }
136
- fetchNextPage = { this . loadMore }
137
- getItemRef = { this . getItemRef }
138
- renderItem = { this . renderItem }
139
- renderLoadingPlaceholders = { this . renderPlaceholders }
140
- />
137
+ items = { this . state . recommendations }
138
+ fetchingNextPage = { this . state . fetching }
139
+ lastPage = { this . state . recommendations && this . state . recommendations . length >= 100 }
140
+ guessedItemHeight = { 300 }
141
+ fetchNextPage = { this . loadMore }
142
+ getItemRef = { this . getItemRef }
143
+ renderItem = { this . renderItem }
144
+ renderLoadingPlaceholders = { this . renderPlaceholders }
145
+ />
141
146
</ Main >
142
147
) ;
143
148
}
0 commit comments