Skip to content
This repository has been archived by the owner on Mar 14, 2021. It is now read-only.

Agregar Cafeteria Barista #10

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions app/controllers/home_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
class HomeController < ApplicationController
PLACES = [
{
url: "https://images.unsplash.com/photo-1498804103079-a6351b050096?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80",
name: "BARISTA",
address: "Av. Puebla #2, 38827 Moroleón",
tags: [
{
label: "barato",
color: "success",
},
],
},
{
url: "https://images.unsplash.com/photo-1498804103079-a6351b050096?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1234&q=80",
name: "BROGA",
address: "Av. Panorama 604 A, Panorama, 37160 León, Gto.",
tags: [
{
label: "Buen wifi",
url: "https://scontent-qro1-1.xx.fbcdn.net/v/t1.0-1/p720x720/45423980_1740608892734084_7119202240681738240_o.jpg?_nc_cat=102&_nc_sid=dbb9e7&_nc_ohc=zz2wQqyirgcAX84Bv5L&_nc_ht=scontent-qro1-1.xx&_nc_tp=6&oh=58cff85ddb9f486b724ee73a0794ed76&oe=5E9369D1",
name: "Tanuki Coffee",
address: "Rafael Iriarte 519 Villa Insurgentes",
tags: [
{
label: "barato",
color: "success",
},
{
label: "ambiente agradable",
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",
Expand All @@ -15,6 +47,29 @@ class HomeController < ApplicationController
}
],
},
{
url: "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQR2D_5Yai0I6KmCo5vrOpSrU2_Wd1JOIgwczs50MozHTCLGOPk",
name: "Cafe Draco",
address: "Mirador de Leon, Gto",
tags: [
{
label: "barato",
color: "success",
},
{
label: "vista hermosa",
color: "success",
}
url: "https://images.unsplash.com/photo-1528447374240-3af10805243d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1868&q=80",
name: "Cafetería Valcket",
address: "Avenida de las Alamedas #1414",
tags: [
{
label: "música agradable",
color: "success",
},
],
},
{
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",
Expand Down Expand Up @@ -70,7 +125,33 @@ class HomeController < ApplicationController
color: "success",
}
],
},
{
url: "https://images.unsplash.com/photo-1515592302748-6c5ea17e2f0e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1234&q=80",
name: "Starbucks",
address: "Juan Alonso de Torres Boulevard 2002",
tags: [
{
label: "barato",
color: "success",
},
{
label: "wifi estable",
color: "success",
}
],
}
{
url: "https://lh3.googleusercontent.com/p/AF1QipMtOuibpAiw8BbxFTQZBrcVEVwoY7E0BCtxRp0v=s0",
name: "Broga",
address: "Av. Panorama 604 A, Panorama, 37160 León, Gto.",
tags: [
{
label: "Barato",
color: "success",
},
],
},
]

def index
Expand Down