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
96 lines (93 loc) · 2.39 KB
/
home_controller.rb
File metadata and controls
96 lines (93 loc) · 2.39 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
class HomeController < ApplicationController
PLACES = [
{
url: "https://images.unsplash.com/photo-1583551536322-76c0aa4ac335?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60",
name: "Cafeteria Del Perrito",
address: "perritos 33, Campestre, León",
tags: [
{
label: "Buen Café",
color: "success",
},
],
},
{
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-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