├── aware.js ├── demo.html ├── readme.md ├── shkmark_example.png └── time_of_day.html /aware.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 3 | /* 4 | 5 | A Javascript library to help create dynamic 6 | reader-aware interfaces to content. 7 | 8 | by Ben Brown ben@xoxco.com 9 | */ 10 | 11 | var lastVisit = false; 12 | var cookieRegex = new RegExp("(?:^|.*;\\s*)lastVisit\\s*\\=\\s*((?:[^;](?!;))*[^;]?).*"); 13 | 14 | /* Helpful little date helper here! */ 15 | Date.prototype.getDOY = function() { 16 | var onejan = new Date(this.getFullYear(),0,1); 17 | return Math.ceil((this - onejan) / 86400000); 18 | } 19 | 20 | function setLastVisit(date) { 21 | if (window.localStorage) { 22 | window.localStorage.setItem('lastVisit',date); 23 | } else { 24 | document.cookie = 'lastVisit=' + escape(date) + "; expires=Tue, 19 Jan 2038 03:14:07 GMT; path=/"; 25 | } 26 | } 27 | 28 | 29 | function getLastVisit() { 30 | if (window.localStorage) { 31 | return window.localStorage.getItem('lastVisit'); 32 | } else { 33 | var maybeLastVisit = unescape(document.cookie.replace(cookieRegex, "$1")); 34 | return !isNaN(new Date(maybeLastVisit)) ? maybeLastVisit : null; 35 | } 36 | } 37 | 38 | function pluralizeString(num,str) { 39 | if (num==1) { 40 | return str; 41 | } else { 42 | return str+'s'; 43 | } 44 | } 45 | 46 | function relativeTimestamp(ms) { 47 | var seconds = Math.floor(ms / 1000); 48 | 49 | if (seconds < 60) { 50 | return seconds + pluralizeString(seconds,' second'); 51 | } 52 | 53 | var minutes = Math.floor(seconds/60); 54 | if (minutes < 60) { 55 | return minutes + pluralizeString(minutes,' minute'); 56 | } 57 | 58 | var hours = Math.floor(minutes/60); 59 | if (hours < 24) { 60 | return hours + pluralizeString(hours,' hour'); 61 | } 62 | 63 | var days = Math.floor(hours/24); 64 | if (days < 7) { 65 | return days + pluralizeString(days,' day'); 66 | } 67 | 68 | var weeks = Math.floor(days/7); 69 | return weeks + pluralizeString(weeks,' week'); 70 | 71 | } 72 | 73 | 74 | // insert a bookmark with a relative timestamp after the last new item on the page. 75 | $.fn.shkmark = function(options) { 76 | var settings = { 77 | 'className': 'shkmark', 78 | 'element': 'li', 79 | 'newIndicator':'.new' 80 | } 81 | 82 | $.extend(settings,options); 83 | 84 | if (!$(this).length || !$(this).filter(settings.newIndicator).length) { 85 | return; 86 | } 87 | 88 | if (!lastVisit) { 89 | lastVisit = getLastVisit(); 90 | } 91 | if (!lastVisit) { return; } 92 | lastVisit = new Date(lastVisit); 93 | var now = new Date(); 94 | 95 | var message = 'You started reading here ' + relativeTimestamp(now-lastVisit) + ' ago'; 96 | 97 | var bookmark = document.createElement(settings.element); 98 | $(bookmark).addClass(settings.className); 99 | $(bookmark).html(message); 100 | 101 | 102 | if($(this).last()[0]!=$(this).filter(settings.newIndicator)[0]) { 103 | $(this).filter(settings.newIndicator).last().after(bookmark); 104 | } 105 | 106 | 107 | } 108 | 109 | $.fn.time_of_day = function(time_of_day) { 110 | // What time of day is it? 111 | // Is it sunny or dark? 112 | // Is it lunch time? Or late night? 113 | /* 114 | 115 | 4-7 early morning 116 | 7-11 morning / breakfast time 117 | 11-13 noonish / lunch time 118 | 13-16 afternoon 119 | 16-19 early evening 120 | 19-21 evening / dinner time 121 | 21-23 night 122 | 23-4 latenight 123 | 124 | 7-19 daytime 125 | 19-7 nighttime 126 | 127 | */ 128 | reader.morning = reader.afternoon = reader.lunchtime = reader.daytime = reader.nighttime = false; 129 | if (time_of_day >= 4 && time_of_day < 6) { 130 | reader.time_of_day = 'early'; 131 | } else if (time_of_day >= 6 && time_of_day < 8) { 132 | reader.time_of_day = 'earlymorning'; 133 | reader.morning = true; 134 | } else if (time_of_day >= 8 && time_of_day < 11) { 135 | reader.time_of_day = 'latemorning'; 136 | reader.morning = true; 137 | } else if (time_of_day >= 11 && time_of_day < 13) { 138 | reader.time_of_day = 'noonish'; 139 | reader.afternoon = true; 140 | reader.lunchtime = true; // this is an illusion. 141 | } else if (time_of_day >= 13 && time_of_day < 16) { 142 | reader.time_of_day = 'afternoon'; 143 | reader.afternoon = true; 144 | } else if (time_of_day >= 16 && time_of_day < 19) { 145 | reader.time_of_day = 'earlyevening'; 146 | reader.afternoon = true; 147 | } else if (time_of_day >= 19 && time_of_day < 21) { 148 | reader.time_of_day = 'evening'; 149 | } else if (time_of_day >= 21 && time_of_day < 23) { 150 | reader.time_of_day = 'night'; 151 | } else if (time_of_day >= 23 || time_of_day < 4) { 152 | reader.time_of_day = 'latenight'; 153 | } 154 | 155 | if (time_of_day >= 6 && time_of_day <19) { 156 | reader.daytime = true; 157 | $('body').addClass('daytime'); 158 | 159 | } else { 160 | reader.nighttime = true; 161 | $('body').addClass('nighttime'); 162 | } 163 | 164 | if (reader.morning) { 165 | $('body').addClass('morning'); 166 | } 167 | if (reader.afternoon) { 168 | $('body').addClass('afternoon'); 169 | } 170 | 171 | $('body').addClass(reader.time_of_day); 172 | 173 | } 174 | 175 | $.fn.aware = function(options) { 176 | 177 | var settings = { 178 | dateAttribute: 'data-pubDate', 179 | bufferTime: 60*60*1000 // by default, leave things new if they are an hour old or less 180 | 181 | } 182 | 183 | var reader = {}; 184 | 185 | 186 | $.extend(settings,options); 187 | 188 | // retrieve user's last visit timestamp 189 | // but make sure not to override it if already set once this session! 190 | if (!lastVisit) { 191 | lastVisit = getLastVisit(); 192 | } 193 | var now = new Date(); 194 | if (!lastVisit) { 195 | setLastVisit(now); 196 | $('body').addClass('first-visit'); 197 | reader.lastVisit = now; 198 | reader.firstVisit = true; 199 | reader.secondsSinceLastVisit = 0; 200 | window.reader = reader; 201 | } else { 202 | lastVisit = new Date(lastVisit); 203 | reader.lastVisit = lastVisit; 204 | 205 | if (lastVisit.getDOY() < now.getDOY()) { 206 | $('body').addClass('first-visit-of-day'); 207 | $('body').addClass('repeat-visitor'); 208 | reader.firstVisitOfDay = true; 209 | reader.repeatVisitor = true; 210 | 211 | } else { 212 | if (!$('body').hasClass('first-visit')) { 213 | $('body').addClass('repeat-visitor'); 214 | reader.repeatVisitor = true; 215 | } 216 | } 217 | } 218 | 219 | if (!reader.firstVisit) { 220 | this.each(function() { 221 | // find the date element 222 | var postDate = $(this).attr(settings.dateAttribute); 223 | if (postDate) { 224 | var arr = postDate.split(/[- :]/); 225 | postTimestamp = new Date(arr[0], arr[1]-1, arr[2], arr[3], arr[4], arr[5]); 226 | if (postTimestamp > lastVisit-settings.bufferTime) { 227 | $(this).addClass('new'); 228 | } else { 229 | $(this).addClass('seen'); 230 | } 231 | 232 | } 233 | 234 | }); 235 | } 236 | 237 | 238 | reader.secondsSinceLastVisit = Math.floor((now-lastVisit)/1000); 239 | reader.timeSinceLastVisit = relativeTimestamp(now-lastVisit); 240 | 241 | window.reader = reader; 242 | 243 | $.fn.time_of_day(new Date().getHours()); 244 | 245 | 246 | setLastVisit(now); 247 | } 248 | 249 | })(jQuery); -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- 1 |
2 |With our magical jQuery Plugin, they can!
211 |This jQuery extension extends responsive design beyond screen size measurements, allowing designers and developers 215 | to adjust layouts to real life use cases using only CSS. 216 |
217 |Reload to see the page adjust itself
218 | 219 |View as a repeat visitor, visiting for the first time of the day
220 |Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles.
254 |Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles.
258 |Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles.
262 |Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles.
266 |Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles.
270 |Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles.
274 |Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles.
278 |Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles.
282 |292 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 293 |
294 |295 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 296 |
297 |298 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 299 |
300 | 301 |305 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 306 |
307 |308 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 309 |
310 |311 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 312 |
313 | 314 |318 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 319 |
320 |321 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 322 |
323 |324 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 325 |
326 |327 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 328 |
329 | 330 |334 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 335 |
336 |337 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 338 |
339 |340 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 341 |
342 |343 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 344 |
345 | 346 |350 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 351 |
352 |353 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 354 |
355 |356 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 357 |
358 |359 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 360 |
361 | 362 |366 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 367 |
368 |369 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 370 |
371 |372 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 373 |
374 |375 | Pariatur cred PBR, tattooed vegan cardigan VHS assumenda brunch godard swag food truck aute. Mcsweeney's bushwick butcher VHS pitchfork. Trust fund odio nihil keffiyeh, irony reprehenderit chambray fixie pour-over. Viral occaecat stumptown voluptate et locavore. Anim cupidatat tempor irure, qui DIY velit labore dolor elit semiotics. Mumblecore quinoa forage ethnic, put a bird on it farm-to-table beard velit fanny pack dreamcatcher occupy food truck. Aliquip ex anim, locavore aliqua umami stumptown narwhal fugiat excepteur hoodie art party mixtape carles. 376 |
377 | 378 |