├── _config.yml
├── .editorconfig
├── _data
└── comments
│ ├── www_devschile_cl_
│ ├── entry1585892162512.json
│ └── entry1585891648255.json
│ ├── cleanqueen_cl_
│ └── entry1586134943579.json
│ ├── outletdelcafe_cl_
│ └── entry1585920696755.json
│ ├── www_instagram_com_frutos_secos_sobre_ruedas_
│ └── entry1587005965156.json
│ ├── www_instagram_com_thepowerfoods
│ └── entry1586719606387.json
│ ├── www_instagram_com_soyvegechef_
│ └── entry1586896741229.json
│ └── carnesproductor_cl_
│ └── entry1586811169621.json
├── assets
├── css
│ └── comments.css
└── js
│ └── comments.js
├── _layouts
└── default.html
├── staticman.yml
└── README.md
/_config.yml:
--------------------------------------------------------------------------------
1 | theme: jekyll-theme-cayman
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | indent_style = space
5 | indent_size = 2
6 | end_of_line = lf
7 | charset = utf-8
8 | trim_trailing_whitespace = true
9 | insert_final_newline = true
10 |
--------------------------------------------------------------------------------
/_data/comments/www_devschile_cl_/entry1585892162512.json:
--------------------------------------------------------------------------------
1 | {"_id":"01680220-756d-11ea-9ebf-45fe7f55ca26","name":"Otro comentario","email":"bdbd02d6adad492ca6a88bf9ca1cb029","message":"Otro comentario","date":1585892162}
--------------------------------------------------------------------------------
/_data/comments/www_devschile_cl_/entry1585891648255.json:
--------------------------------------------------------------------------------
1 | {"_id":"cee38870-756b-11ea-9ebf-45fe7f55ca26","name":"Huemul","email":"bdbd02d6adad492ca6a88bf9ca1cb029","message":"La mejor comunidad de diseñadores y desarrolladores web","date":1585891648}
--------------------------------------------------------------------------------
/_data/comments/cleanqueen_cl_/entry1586134943579.json:
--------------------------------------------------------------------------------
1 | {"_id":"462d6990-77a2-11ea-8fa6-a1e79748336f","name":"Guillermo","email":"112ff5022353facc69304a9b009bc39b","commune":"Santiago Centro","message":"Pedí un día viernes y llegó todo sin problemas el sábado por la tarde.","date":1586134943}
--------------------------------------------------------------------------------
/_data/comments/outletdelcafe_cl_/entry1585920696755.json:
--------------------------------------------------------------------------------
1 | {"_id":"711e9e20-75af-11ea-a61f-8bf3e57b50af","name":"Héctor","email":"bbd257637393bcbc390db713d3ad31bb","commune":"Providencia","message":"Llegó el pedido en 2 días, pedí el café de Etiopía que es muy rico. Volvería a comprar ahí.","date":1585920696}
--------------------------------------------------------------------------------
/_data/comments/www_instagram_com_frutos_secos_sobre_ruedas_/entry1587005965156.json:
--------------------------------------------------------------------------------
1 | {"_id":"478232a0-7f8e-11ea-8dd1-333a10cf7100","name":"Carlos Vallejos","email":"96bcee84d11fc659a39556ae63a7180a","commune":"Lo Prado","message":"Buena comunicacion, excelente calidad de servicio, buen empaque, precios acordes.","date":1587005965}
--------------------------------------------------------------------------------
/_data/comments/www_instagram_com_thepowerfoods/entry1586719606387.json:
--------------------------------------------------------------------------------
1 | {"_id":"8c5d8de0-7cf3-11ea-b973-f9732219b9c8","name":"Carlos Vallejos","email":"96bcee84d11fc659a39556ae63a7180a","commune":"Lo Prado","message":"Compré el viernes 10 y llegó el domingo 12, buen servicio, gran variedad de productos y precios competitivos","date":1586719606}
--------------------------------------------------------------------------------
/_data/comments/www_instagram_com_soyvegechef_/entry1586896741229.json:
--------------------------------------------------------------------------------
1 | {"_id":"f8f8a7d0-7e8f-11ea-9c04-af9b89ced534","name":"Carlos Vallejos","email":"96bcee84d11fc659a39556ae63a7180a","commune":"Lo Prado","message":"Pedí tofu y queso vegano, llegó bien, con las medidas pertinentes de salubridad. Tambien tienen legumbres entre otras cosas y despacho gratuito","date":1586896741}
--------------------------------------------------------------------------------
/_data/comments/carnesproductor_cl_/entry1586811169621.json:
--------------------------------------------------------------------------------
1 | {"_id":"bc476c30-7dc8-11ea-b18c-09ef47278a86","name":"Guillermo","email":"112ff5022353facc69304a9b009bc39b","commune":"Santiago Centro","message":"Pedí el viernes y me llegó el lunes sin problemas. El único detalle es que todo llega congelado, incluyendo productos que no dicen congelado en el título.","date":1586811169}
--------------------------------------------------------------------------------
/assets/css/comments.css:
--------------------------------------------------------------------------------
1 | .comment-link {
2 | display: inline-block;
3 | margin-left: 5px;
4 | padding: 3px;
5 | background: #fff;
6 | border: 1px solid #ccc;
7 | font-size: 10px;
8 | position: relative;
9 | cursor: pointer;
10 | }
11 |
12 | .comments-list-backdrop {
13 | position: fixed;
14 | top: 0;
15 | left: 0;
16 | right: 0;
17 | bottom: 0;
18 | background: rgba(0,0,0,.3);
19 | }
20 |
21 | .comments-modal {
22 | position: fixed;
23 | top: 50%;
24 | left: 50%;
25 | transform: translate(-50%, -50%);
26 | width: 100%;
27 | overflow: auto;
28 | max-width: 600px;
29 | max-height: 600px;
30 | background: #fff;
31 | border: 1px solid #ccc;
32 | border-radius: 10px;
33 | z-index: 1;
34 | }
35 |
36 | .comments-modal-close {
37 | position: absolute;
38 | top: 10px;
39 | right: 10px;
40 | }
41 |
42 | .comments-list {
43 | padding: 10px;
44 | list-style: none;
45 | margin: 0;
46 | }
47 |
48 | .comment-list-item {
49 | border-bottom: 1px solid #ccc;
50 | margin-bottom: 10px;
51 | }
52 |
53 | .comment-form {
54 | margin: 0 auto 10px;
55 | width: 100%;
56 | max-width: 300px;
57 | }
58 |
59 | .comment-form-input {
60 | display: block;
61 | width: 100%;
62 | margin-bottom: 10px;
63 | }
--------------------------------------------------------------------------------
/_layouts/default.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {% if site.google_analytics %}
5 |
6 |
12 | {% endif %}
13 |
14 |
15 |
16 |
17 |
20 | {% seo %}
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 | Skip to the content.
29 |
30 |
41 |
42 |
43 |
44 | {{ content }}
45 |
46 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/staticman.yml:
--------------------------------------------------------------------------------
1 | # Name of the property. You can have multiple properties with completely
2 | # different config blocks for different sections of your site.
3 | # For example, you can have one property to handle comment submission and
4 | # another one to handle posts.
5 | comments:
6 | # (*) REQUIRED
7 | #
8 | # Names of the fields the form is allowed to submit. If a field that is
9 | # not here is part of the request, an error will be thrown.
10 | allowedFields: ["name", "email", "message", "commune"]
11 |
12 | # (*) REQUIRED
13 | #
14 | # Name of the branch being used. Must match the one sent in the URL of the
15 | # request.
16 | branch: "master"
17 |
18 | # Text to use as the commit message or pull request title. Accepts placeholders.
19 | commitMessage: "Agrega nuevo comentario"
20 |
21 | # (*) REQUIRED
22 | #
23 | # Destination path (filename) for the data files. Accepts placeholders.
24 | filename: "entry{@timestamp}"
25 |
26 | # The format of the generated data files. Accepted values are "json", "yaml"
27 | # or "frontmatter"
28 | format: "json"
29 |
30 | # List of fields to be populated automatically by Staticman and included in
31 | # the data file. Keys are the name of the field. The value can be an object
32 | # with a `type` property, which configures the generated field, or any value
33 | # to be used directly (e.g. a string, number or array)
34 | generatedFields:
35 | date:
36 | type: date
37 | options:
38 | format: "timestamp-seconds"
39 |
40 | # Whether entries need to be appproved before they are published to the main
41 | # branch. If set to `true`, a pull request will be created for your approval.
42 | # Otherwise, entries will be published to the main branch automatically.
43 | moderation: true
44 |
45 | # Name of the site. Used in notification emails.
46 | name: "devsChile Cuarentena"
47 |
48 | # Notification settings. When enabled, users can choose to receive notifications
49 | # via email when someone adds a reply or a new comment. This requires an account
50 | # with Mailgun, which you can get for free at http://mailgun.com.
51 | #notifications:
52 | # Enable notifications
53 | #enabled: true
54 |
55 | # (!) ENCRYPTED
56 | #
57 | # Mailgun API key
58 | #apiKey: "1q2w3e4r"
59 |
60 | # (!) ENCRYPTED
61 | #
62 | # Mailgun domain (encrypted)
63 | #domain: "4r3e2w1q"
64 |
65 | # (*) REQUIRED
66 | #
67 | # Destination path (directory) for the data files. Accepts placeholders.
68 | path: "_data/comments/{options.slug}"
69 |
70 | # Names of required fields. If any of these isn't in the request or is empty,
71 | # an error will be thrown.
72 | requiredFields: ["name", "email", "message"]
73 |
74 | # List of transformations to apply to any of the fields supplied. Keys are
75 | # the name of the field and values are possible transformation types.
76 | transforms:
77 | email: md5
78 |
--------------------------------------------------------------------------------
/assets/js/comments.js:
--------------------------------------------------------------------------------
1 | document.addEventListener('DOMContentLoaded', () => {
2 | const CommentForm = {
3 | template: `
4 |
14 | `,
15 | props: {
16 | slug: {
17 | required: true,
18 | type: String,
19 | },
20 | },
21 | data() {
22 | return {
23 | name: null,
24 | email: null,
25 | message: null,
26 | commune: null,
27 | loading: false,
28 | success: false,
29 | error: false,
30 | };
31 | },
32 | methods: {
33 | submitForm() {
34 | this.loading = true;
35 | this.success = false;
36 | this.error = false;
37 | const url = new URL(
38 | 'https://staticman-test.herokuapp.com/v2/entry/devschile/cuarentena/master/comments'
39 | );
40 | const queryParams = new URLSearchParams();
41 | queryParams.append('options[slug]', this.slug);
42 | queryParams.append('fields[name]', this.name);
43 | queryParams.append('fields[email]', this.email);
44 | queryParams.append('fields[commune]', this.commune);
45 | queryParams.append('fields[message]', this.message);
46 |
47 | axios
48 | .post(`${url}?${queryParams}`)
49 | .then(() => {
50 | this.success = true;
51 | })
52 | .catch(() => {
53 | this.error = true;
54 | })
55 | .finally(() => {
56 | this.loading = false;
57 | });
58 | },
59 | },
60 | };
61 |
62 | const CommentList = {
63 | components: {
64 | CommentForm,
65 | },
66 | template: `
67 |
68 |
69 |
79 |
80 | `,
81 | props: {
82 | comments: {
83 | default: () => {},
84 | type: Object,
85 | },
86 | slug: {
87 | required: true,
88 | type: String,
89 | },
90 | },
91 | methods: {
92 | close(e) {
93 | this.$emit('close');
94 | },
95 | },
96 | filters: {
97 | date(val) {
98 | return new Date(val * 1000);
99 | },
100 | },
101 | };
102 |
103 | const CommentCount = Vue.extend({
104 | components: {
105 | CommentList,
106 | },
107 | template: `
108 | `,
112 | props: {
113 | slug: {
114 | required: true,
115 | type: String,
116 | },
117 | },
118 | data() {
119 | return {
120 | showComments: false,
121 | };
122 | },
123 | computed: {
124 | comments() {
125 | return window.devCuarentena.comments && window.devCuarentena.comments[this.slug];
126 | },
127 | commentNumber() {
128 | return this.comments ? Object.keys(this.comments).length : 0;
129 | },
130 | },
131 | });
132 |
133 | const mainContent = document.querySelector('.js-parsed-content');
134 |
135 | mainContent.querySelectorAll('a:not(.skip-review)').forEach(a => {
136 | const url = new URL(a.href);
137 | const linkComments = new CommentCount({
138 | propsData: {
139 | slug: `${url.host}${url.pathname}`.replace(/[^a-z0-9]/gi, '_'),
140 | number: 4,
141 | },
142 | });
143 | linkComments.$mount();
144 | a.parentNode.insertBefore(linkComments.$el, a.nextSibling);
145 | });
146 | });
147 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Cuarentena
2 |
3 | ## Servicios de delivery / entrega a domicilio en Santiago:
4 |
5 | ### Frutas y Verduras 🥒
6 |
7 | | 📝 | 📞 | 🚚 | 🔍 |
8 | | ---|---|---|---|
9 | |[Frutonchile.cl](https://frutonchile.cl)|-|-|-|
10 | |[Vasma.cl](https://vasma.cl)|-|-|-|
11 | |[Huertosdelchef.cl](https://huertosdelchef.cl)|-|-|-|
12 | |[Huertasadeo.cl](https://huertasadeo.cl)|-|-|-|
13 | |[Elnegrito.cl](https://elnegrito.cl)|-|-|-|
14 | |[Mbgreen.cl](https://mbgreen.cl)|-|-|-|
15 | |[Feriaadomicilio.cl/pedidos](https://feriaadomicilio.cl/pedidos)|-|-|-|
16 | |[Huertosdelchef.cl](https://huertosdelchef.cl)|-|-|-|
17 | |[@todopaltas](https://www.instagram.com/todopaltas)|-|-|-|
18 | |[@campodebarrio](https://www.instagram.com/campodebarrio/)|-|-|-|
19 | |[@despensapedidos](https://www.instagram.com/despensapedidos/)|-|-|-|
20 | |[@labodeguitadelovalledor](https://www.instagram.com/labodeguitadelovalledor/)|-|-|-|
21 | |[@laveguitadekeko](https://www.instagram.com/laveguitadekeko/)|-|-|-|
22 | |[@vega_italia_1850](https://www.instagram.com/vega_italia_1850/)|-|-|-|
23 | |[@verde_fresa](https://www.instagram.com/verde_fresa/)|-|-|-|
24 | |[@delivery.fresh](https://instagram.com/delivery.fresh)|-|-|-|
25 |
26 | ### Minimarket/Mercaderia/Despensa 🛒
27 |
28 | | 📝 | 📞 | 🚚 | 🔍 |
29 | | ---|---|---|---|
30 | |[Pehuén Alimentos](https://www.comercialpehuen.cl/) | - | Región Metropolitana ( > $48.000) Quinta y Sexta Región (> 240.000) | Abarrotes, frutos secos, verduras |
31 | |[Supermarket Express](https://www.instagram.com/supermarket_express/) |[WhatsApp](https://wa.me/56972430386){:.skip-review} | Delivery gratis para Providencia, Ñuñoa, Las Condes, Santiago Centro, Chicureo. Entregas en menos de 60 minutos | Efectivo, Redcompra, Transferencia |
32 | |[Biroska.cl](https://www.biroska.cl/)|-|-|-|
33 | |[@mercaderiaatucasa.cl](https://instagram.com/mercaderiaatucasa.cl)|-|-|-|
34 | |[@mundoruralpajaritos](https://www.instagram.com/mundoruralpajaritos/)|-|-|-|
35 | |[mercadito.ambulante](https://www.instagram.com/mercadito.ambulante/)|[WhatsApp](https://wa.me/56977584735){:.skip-review}|RM: Gratuito en Ñuñoa,Providencia, Las Condes y Vitacura, demás comunas consultar.|Huevos de gallinas libres, Miel,Queso|
36 | |[Laferiante.cl](https://laferiante.cl/shop/)|laferiante.cl@gmail.com, (+56 9) 6370 7587|Llegamos a las siguientes comunas: Vitacura, Las Condes, Providencia, Lo Barnechea, Ñuñoa y La Reina. Despachamos Lunes, Miércoles, Viernes|-|
37 |
38 | ### Productos de limpieza/aseo 🛀
39 |
40 | | 📝 | 📞 | 🚚 | 🔍 |
41 | | ---|---|---|---|
42 | |[Cleanqueen.cl](https://cleanqueen.cl)|-|-|-|
43 | |[Incoludido.cl](https://incoludido.cl)|-|-|-|
44 | |[Artvlom](https://www.instagram.com/artvlom/)|-|-|-|
45 |
46 | ### Huevos 🥚
47 |
48 | | 📝 | 📞 | 🚚 | 🔍 |
49 | | ---|---|---|---|
50 | |[Huevoslacastellana.com](https://huevoslacastellana.com)|-|-|-|
51 | |[@agricolachada](https://www.instagram.com/agricolachada)|-|-|-|
52 | |[@huevossanrosendo](https://www.instagram.com/huevossanrosendo)|-|-|-|
53 |
54 | ### Frutos Secos 🥜🌰
55 |
56 | | 📝 | 📞 | 🚚 | 🔍 |
57 | | ---|---|---|---|
58 | |[Frutos Secos Sobre Ruedas](https://www.instagram.com/frutos_secos_sobre_ruedas/)|-|RM: Algunas comunas con despacho gratuito sujeto al monto del pedido.|Frutos secos despachados sobre ruedas :bike: cero huella de carbono|
59 | |[@thepowerfoods](https://www.instagram.com/thepowerfoods)|-|RM: Sobre 35.000 despacho gratuito, si no 3500, y a regiones el valor dependerá del peso y distancia|Frutos secos, deshidratados, semillas,aceites y harinas |
60 | |[@tostaduria_tomasso](https://www.instagram.com/tostaduria_tomasso)|-|-|-|
61 | |[@thepower_offood](https://instagram.com/thepower_offood)|-|-|-|
62 | |[@riwunsnacks](https://instagram.com/riwunsnacks)|-|-|-|
63 | |[@da.oro](https://instagram.com/da.oro)|-|-|-|
64 |
65 | ### Carne 🍖
66 |
67 | | 📝 | 📞 | 🚚 | 🔍 |
68 | | ---|---|---|---|
69 | |[Carnesproductor.cl](https://carnesproductor.cl)|-|-|-|
70 | |[Carnesmanada.com](https://carnesmanada.com)|-|-|-|
71 | |[Curacaribs.cl](https://curacaribs.cl)|-|-|-|
72 | |[@costillasypunto](https://www.instagram.com/costillasypunto)|-|-|-|
73 | |[Cecinas.com](https://www.cecinas.com)|-|-|-|
74 | |[Parrilleroslaligua.cl](https://parrilleroslaligua.cl/)|-|-|-|
75 | |[Mady's BBQ](https://www.instagram.com/madysbbq03/)|-|-|-|
76 | |[Corte Criollo](https://www.instagram.com/rincondelprofesor)|-|-|-|
77 | |[Fundo El Reinal](https://www.elreinal.cl)|-|-|-|
78 | |[Corrales del Sur](https://tiendacorrales.cl)|-|-|-|
79 |
80 | ### Pollo 🍖
81 |
82 | | 📝 | 🚚 | 🔍 |
83 | | ---|---|---|
84 | |[Pollosro](https://www.instagram.com/pollosro/) | Región Metropolitana | Pollo, huevos, hamburguesas |
85 | |[Tiendaonline.tinajacura.com](https://tiendaonline.tinajacura.com)|-|-|-|
86 | |[Chickenfactory.cl](https://www.chickenfactory.cl/)|-|-|-|
87 | |[Wingsandrings.cl](https://www.wingsandrings.cl/)|-|-|-|
88 |
89 | ### Pescado 🐠
90 |
91 | | 📝 | 📞 | 🚚 | 🔍 |
92 | | ---|---|---|---|
93 | |[Fbx.cl](https://fbx.cl)|-|-|-|
94 | |[Delmuelle.cl](https://delmuelle.cl)|-|-|-|
95 | |[@seadelik](https://www.instagram.com/seadelik)|-|-|-|
96 | |[Conagallas.cl](https://conagallas.cl)|-|-|-|
97 | |[FishBox](https://fishboxchile.cl)|-|-|-|
98 |
99 | ### Pan 🍞
100 |
101 | | 📝 | 📞 | 🚚 | 🔍 |
102 | | ---|---|---|---|
103 | |[Crust](https://www.instagram.com/crust_scl)|-|-|-|
104 | |[Pan Mostacho](https://www.tienda.panmostacho.cl/pedir)|-|-|-|
105 |
106 | ### Barras proteína 🍫
107 |
108 | | 📝 | 📞 | 🚚 | 🔍 |
109 | | ---|---|---|---|
110 | |[Nutracom.cl](https://nutracom.cl)|-|-|-|
111 | |[@yourgoalnutrition](https://www.instagram.com/yourgoalnutrition)|-|-|-|
112 |
113 | ### Charcuteria 🥓
114 |
115 | | 📝 | 📞 | 🚚 | 🔍 |
116 | | ---|---|---|---|
117 | |[@losmora.charcuteria](https://www.instagram.com/losmora.charcuteria)|-|-|-|
118 | |[Cecinas.com](https://www.cecinas.com)|-|-|-|
119 |
120 | ### Plant based/vegano 🥦
121 |
122 | | 📝 | 📞 | 🚚 | 🔍 |
123 | | ---|---|---|---|
124 | |[@lafamiliavegan](https://www.instagram.com/lafamiliavegan/)|-|Envios dentro de Santiago. Entre $500 y $2.500|Productos congelados, frutos secos, postres, para la despensa.|
125 | |[@nikol_ivo_caseros](https://www.instagram.com/nikol_ivo_caseros/) | - | Envío propio: $2500 a comunas en cuarentena. Otras comunas con mínimo: Renca, Maipú, PAC, San Miguel| Congelados y dulces |
126 | |[@veganvega_](https://www.instagram.com/veganvega_/) |[WhatsApp](https://wa.me/56941524136){:.skip-review} | envío propio | quesos, dulces, pan y otros productos veganos |
127 | |[SoyVegeChef](https://www.instagram.com/soyvegechef/)|-|RM: Despacho gratuito|Alimentos naturales y veganos|
128 | |[Protteina.com](https://protteina.com)|-|-|-|
129 | |[Dulcedimagio.com](https://dulcedimagio.com/)|-|-|-|
130 | |[Wellstore.cl](https://wellstore.cl/)|-|-|-|
131 |
132 | ### Queques 🍰
133 |
134 | | 📝 | 📞 | 🚚 | 🔍 |
135 | | ---|---|---|---|
136 | |[@bolos.brasil](https://www.instagram.com/bolos.brasil)|-|-|-|
137 | |[@dulcemaniachile](https://www.instagram.com/dulcemaniachile)|-|-|-|
138 | |[Saborbrasil.cl](https://saborbrasil.cl/)|-|-|-|
139 | |[Negritobrigadeiros.com](www.negritobrigadeiros.com)|-|-|-|
140 |
141 | ### Copete 🥂
142 |
143 | | 📝 | 📞 | 🚚 | 🔍 |
144 | | ---|---|---|---|
145 | |[Supermercadodiez.cl](https://supermercadodiez.cl)|-|-|-|
146 | |[Casadelacerveza.cl](https://casadelacerveza.cl)|-|-|-|
147 | |[Tandem.wine](https://tandem.wine)|-|-|-|
148 | |[Tamango.cl](https://tamango.cl/shop/)|-|-|-|
149 | |[Cervezadiem.cl](https://www.cervezadiem.cl/)|-|-|-|
150 | |[La Barra CCU](http://labarra.cl/)|-|-|-|
151 | |[Las Pipas de Einstein](https://laspipasdeeinstein.cl/catalogo/)|-|-|-|
152 |
153 | ### Café / Mate ☕️
154 |
155 | | 📝 | 🚚 | 🔍 |
156 | |---|---|---|
157 | |[Outletdelcafe.cl](https://outletdelcafe.cl) | Chilexpress, todo Chile + Cornershop | café en grano |
158 | |[Mokha Bunn](https://www.instagram.com/mokhabunn/) | Despacho gratis a partir de 2 bolsas en Ñunoa, Providencia, Las Condes, Vitacura, La Reina y Lo Barnechea. | Café de Yemen, cafeteras manuales, accesorios, filtros |
159 | |[mimate.cl](https://www.mimate.cl/) | Despacho express compra antes de 11:30am y recibe el mismo día - Región Metropolitana | Yerba Mate |
160 |
161 | ### Miel 🍜
162 |
163 | | 📝 | 📞 | 🚚 | 🔍 |
164 | | ---|---|---|---|
165 | |[@montecarmelocolmenares](https://www.instagram.com/montecarmelocolmenares)|-|-|-|
166 |
167 | ### Mascotas 🐶
168 |
169 | | 📝 | 📞 | 🚚 | 🔍 |
170 | | ---|---|---|---|
171 | |[PuntoMascotas.cl](https://www.puntomascotas.cl/)|-|-|-|
172 | |[BestForPets.cl](https://bestforpets.cl/tienda/)|-|-|-|
173 | |[TiendaPet.cl](https://www.tiendapet.cl/)|-|-|-|
174 | |[@dogatpetmarket](https://www.instagram.com/dogatpetmarket) - [web](https://www.dogat.cl){:.skip-review}|-|-|-|
175 |
176 | ### Carbón 🥩
177 |
178 | | 📝 | 📞 | 🚚 | 🔍 |
179 | | ---|---|---|---|
180 | |[Carboneros.cl](https://carboneros.cl)|-|-|-|
181 |
182 | ### Pizza 🍕
183 |
184 | | 📝 | 📞 | 🚚 | 🔍 |
185 | | ---|---|---|---|
186 | |[Centralpizza.cl](https://www.centralpizza.cl/)|-|-|-|
187 | |[Nolazzi.cl](https://www.nolazzi.cl/)|-|-|-|
188 |
189 | ### Pan de queso 🥞🧀
190 |
191 | | 📝 | 📞 | 🚚 | 🔍 |
192 | | ---|---|---|---|
193 | |[Grespan.cl](https://www.grespan.cl/)|-|-|-|
194 |
195 | ### Ocio 🎮
196 |
197 | | 📝 | 📞 | 🚚 | 🔍 |
198 | | ---|---|---|---|
199 | |[Neeks.cl](https://neeks.cl/)|-|-|-|
200 |
201 | ---
202 |
203 | ¿Quieres aportar con un local? envíalo a huemul@devschile.cl.
204 |
205 | Una iniciativa de [devsChile](https://www.devschile.cl){:.skip-review} para que todos pasemos mejor por esta pandemia.
206 |
--------------------------------------------------------------------------------
72 |-
73 |
76 |
77 |{{ comment.name }} - {{ comment.date | date }}
74 |{{ comment.message }}
75 |