This repository was archived by the owner on Mar 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathhome_controller.rb
More file actions
100 lines (97 loc) · 2.46 KB
/
Copy pathhome_controller.rb
File metadata and controls
100 lines (97 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
class HomeController < ApplicationController
PLACES = [
{
url: "https://images.unsplash.com/photo-1525610553991-2bede1a236e2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80",
name: "Cafe del Valle",
address: "Av. Panorama 1109, Valle del Campestre",
tags: [
{
label: "barato",
color: "success",
},
{
label: "wifi inestable",
color: "warning",
}
],
},
{
url: "https://images.unsplash.com/photo-1525610553991-2bede1a236e2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80",
name: "frappé & smoothie house",
address: "Av. Panorama 915, Valle del Campestre",
tags: [
{
label: "barato",
color: "success",
},
{
label: "wifi inestable",
color: "warning",
}
],
},
{
url: "https://images.unsplash.com/photo-1505275350441-83dcda8eeef5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1267&q=80",
name: "Café 500 Noches",
address: "Av. Panorama 1109, Valle del Campestre",
tags: [
{
label: "barato",
color: "success",
},
{
label: "wifi inestable",
color: "warning",
}
],
},
{
url: "https://images.unsplash.com/photo-1440492248262-6895f9da82fc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1267&q=80",
name: "María Del Alma",
address: "Av. Panorama 1109, Valle del Campestre",
tags: [
{
label: "barato",
color: "success",
},
{
label: "wifi inestable",
color: "warning",
}
],
},
{
url: "https://images.unsplash.com/5/unsplash-bonus.jpg?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80",
name: "Starlight",
address: "Av. Panorama 1109, Valle del Campestre",
tags: [
{
label: "barato",
color: "success",
},
{
label: "wifi inestable",
color: "warning",
}
],
},
{
url: "https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1267&q=80",
name: "La Nona Lola",
address: "Av. Panorama 1109, Valle del Campestre",
tags: [
{
label: "barato",
color: "success",
}
],
}
]
def index
@places = PLACES
end
def terms
end
def privacy
end
end