├── .gitignore └── app ├── assets └── images │ ├── first-trip-hi-dpi-i.jpg │ ├── first-trip-hi-dpi.jpg │ ├── first-trip-i.jpg │ ├── first-trip-low-res-i.jpg │ ├── first-trip-low-res.jpg │ ├── first-trip.jpg │ ├── hero--large-hi-dpi-i.jpg │ ├── hero--large-hi-dpi.jpg │ ├── hero--large-i.jpg │ ├── hero--large.jpg │ ├── hero--medium-hi-dpi-i.jpg │ ├── hero--medium-hi-dpi.jpg │ ├── hero--medium-i.jpg │ ├── hero--medium.jpg │ ├── hero--small-hi-dpi-i.jpg │ ├── hero--small-hi-dpi.jpg │ ├── hero--small-i.jpg │ ├── hero--small.jpg │ ├── hero--smaller-hi-dpi-i.jpg │ ├── hero--smaller-hi-dpi.jpg │ ├── hero--smaller-i.jpg │ ├── hero--smaller.jpg │ ├── icons │ ├── clear-view-escapes.svg │ ├── comment.svg │ ├── facebook.svg │ ├── fire.svg │ ├── globe.svg │ ├── instagram.svg │ ├── mail.svg │ ├── rain.svg │ ├── star.svg │ ├── twitter.svg │ ├── wifi.svg │ └── youtube.svg │ ├── our-start-hi-dpi-i.jpg │ ├── our-start-hi-dpi.jpg │ ├── our-start-i.jpg │ ├── our-start-landscape-hi-dpi-i.jpg │ ├── our-start-landscape-hi-dpi.jpg │ ├── our-start-landscape-i.jpg │ ├── our-start-landscape-small-i.jpg │ ├── our-start-landscape-small.jpg │ ├── our-start-landscape.jpg │ ├── our-start-portrait-hi-dpi-i.jpg │ ├── our-start-portrait-hi-dpi.jpg │ ├── our-start-portrait-i.jpg │ ├── our-start-portrait.jpg │ ├── our-start.jpg │ ├── testimonial-cat-hi-dpi-i.jpg │ ├── testimonial-cat-hi-dpi.jpg │ ├── testimonial-cat-i.jpg │ ├── testimonial-cat.jpg │ ├── testimonial-jane-hi-dpi-i.jpg │ ├── testimonial-jane-hi-dpi.jpg │ ├── testimonial-jane-i.jpg │ ├── testimonial-jane.jpg │ ├── testimonial-john-hi-dpi-i.jpg │ ├── testimonial-john-hi-dpi.jpg │ ├── testimonial-john-i.jpg │ ├── testimonial-john.jpg │ └── testimonials-bg.jpg └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Numerous always-ignore extensions 2 | *.diff 3 | *.err 4 | *.orig 5 | *.log 6 | *.rej 7 | *.swo 8 | *.swp 9 | *.vi 10 | *~ 11 | *.sass-cache 12 | node_modules/ 13 | .tmp/ 14 | 15 | # OS or Editor folders 16 | .DS_Store 17 | Thumbs.db 18 | .cache 19 | .project 20 | .settings 21 | .tmproj 22 | *.esproj 23 | nbproject 24 | *.sublime-project 25 | *.sublime-workspace 26 | *.komodoproject 27 | .komodotools 28 | _notes 29 | dwsync.xml -------------------------------------------------------------------------------- /app/assets/images/first-trip-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/first-trip-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/first-trip-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/first-trip-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/first-trip-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/first-trip-i.jpg -------------------------------------------------------------------------------- /app/assets/images/first-trip-low-res-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/first-trip-low-res-i.jpg -------------------------------------------------------------------------------- /app/assets/images/first-trip-low-res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/first-trip-low-res.jpg -------------------------------------------------------------------------------- /app/assets/images/first-trip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/first-trip.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--large-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--large-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--large-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--large-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--large-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--large-i.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--large.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--medium-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--medium-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--medium-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--medium-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--medium-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--medium-i.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--medium.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--small-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--small-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--small-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--small-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--small-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--small-i.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--small.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--smaller-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--smaller-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--smaller-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--smaller-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--smaller-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--smaller-i.jpg -------------------------------------------------------------------------------- /app/assets/images/hero--smaller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/hero--smaller.jpg -------------------------------------------------------------------------------- /app/assets/images/icons/clear-view-escapes.svg: -------------------------------------------------------------------------------- 1 | clear-view-escapes -------------------------------------------------------------------------------- /app/assets/images/icons/comment.svg: -------------------------------------------------------------------------------- 1 | comment -------------------------------------------------------------------------------- /app/assets/images/icons/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/icons/fire.svg: -------------------------------------------------------------------------------- 1 | Untitled-2 -------------------------------------------------------------------------------- /app/assets/images/icons/globe.svg: -------------------------------------------------------------------------------- 1 | globe -------------------------------------------------------------------------------- /app/assets/images/icons/instagram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/icons/mail.svg: -------------------------------------------------------------------------------- 1 | mail -------------------------------------------------------------------------------- /app/assets/images/icons/rain.svg: -------------------------------------------------------------------------------- 1 | rain -------------------------------------------------------------------------------- /app/assets/images/icons/star.svg: -------------------------------------------------------------------------------- 1 | star -------------------------------------------------------------------------------- /app/assets/images/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/icons/wifi.svg: -------------------------------------------------------------------------------- 1 | wifi -------------------------------------------------------------------------------- /app/assets/images/icons/youtube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/our-start-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-i.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-landscape-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-landscape-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-landscape-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-landscape-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-landscape-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-landscape-i.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-landscape-small-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-landscape-small-i.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-landscape-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-landscape-small.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-landscape.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-portrait-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-portrait-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-portrait-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-portrait-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-portrait-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-portrait-i.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start-portrait.jpg -------------------------------------------------------------------------------- /app/assets/images/our-start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/our-start.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-cat-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-cat-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-cat-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-cat-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-cat-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-cat-i.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-cat.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-jane-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-jane-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-jane-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-jane-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-jane-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-jane-i.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-jane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-jane.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-john-hi-dpi-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-john-hi-dpi-i.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-john-hi-dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-john-hi-dpi.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-john-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-john-i.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonial-john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonial-john.jpg -------------------------------------------------------------------------------- /app/assets/images/testimonials-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWebCode/travel-site-files/308a29b72687b83fb458f16d02683e3bc3714026/app/assets/images/testimonials-bg.jpg -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Clear View Escapes 7 | 8 | 9 | 10 | 11 |
12 | 13 | Get in Touch 14 | 21 |
22 | 23 |
24 | 25 |

Your clarity.

26 |

One trip away.

27 |

We create soul restoring journeys that inspire you to be you.

28 |

Get Started Today

29 |
30 | 31 |
32 |

The first trip we planned was our own.

33 |

Ever since, we’ve been working to make travel better for everyone.

34 | Couple walking down a street. 35 | Our founder, Jane Doe 36 |

Here’s how we got started…

37 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

38 |

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

39 |

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum velit esse cillum dolore eu fugiat.

40 |
41 | 42 |
43 | 44 |

Our Features

45 | 46 | 47 |

We’ll Watch the Weather

48 |

Download our app and we’ll send you a notice if it’s about to rain in the next 20 minutes around your current location. A good rain can be refreshing, but sometimes you just want to stay dry.

49 | 50 | 51 |

Global Guides

52 |

We’ve scoured the entire planet for the best retreats and beautiful vistas. If there’s a corner of the world you want to escape to we know the most scenic and inspiring locations.

53 | 54 | 55 |

Wi-Fi Waypoints

56 |

We only send you on trips to places we can personally vouch for as being amazing. Which means we’ve mapped out where local wi-fi spots are and marked them in our app’s map view.

57 | 58 | 59 |

Survival Kit

60 |

Everytime you book an escape with us we send you a survival kit with the finest materials. The kit will allow you to setup a tent, start a fire, scratch your own back and lower your taxes.

61 |
62 | 63 |
64 | 65 |

Real Testimonials

66 | 67 | 68 |

Jane Doe

69 |

9 Time Escaper

70 |

“Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.”

71 | 72 | 73 |

John Smith

74 |

4 Time Escaper

75 |

“Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur.”

76 | 77 | 78 |

Cat McKitty

79 |

6 Time Escaper

80 |

“Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut.”

81 |
82 | 83 | 86 | 104 | 105 | 106 | --------------------------------------------------------------------------------