function registerListener() { const METASITE_APP_DEF_ID = '22bef345-3c5b-4c18-b782-74d4085112ff'; const getXSRFTokenFromCookie = () => { const match = new RegExp('XSRF-TOKEN=(.+?);').exec(document.cookie); return match ? match[1] : ''; }; const eventNames = { Purchase: 'Purchase', Lead: 'Lead', }; const eventNameToConversionActionCategory = { [eventNames.Purchase]: 'PURCHASE', [eventNames.Lead]: 'SUBMIT_LEAD_FORM', }; const channelParams = { price: 'price', id: 'id', currency: 'currency', name: 'name', category: 'category', brand: 'brand', variant: 'variant', list: 'list_name', quantity: 'quantity', step: 'checkout_step', option: 'checkout_option', position: 'list_position', coupon: 'coupon', affiliation: 'affiliation', revenue: 'value', tax: 'tax', sku: 'sku', shipping: 'shipping', }; const mapContents = ({ contents = [] }) => contents.map(({ currency, ...product }) => paramsMapper(product, channelParams), ); const paramsMapper = (params, mapper) => { const mappedParams = Object.keys(params); if (mappedParams.length === 0) { return params; } return mappedParams.reduce((mappedObject, currentKey) => { const newKey = mapper[currentKey]; if (newKey && (params[currentKey] || params[currentKey] === 0)) { mappedObject[newKey] = params[currentKey]; } return mappedObject; }, {}); }; const loadGtag = () => { const gtagInitScript = document.createElement('script'); gtagInitScript.type = 'text/javascript'; gtagInitScript.innerHTML = ` window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()) `; document.head.appendChild(gtagInitScript); const gtagScript = document.createElement('script'); gtagScript.type = 'text/javascript'; gtagScript.setAttribute('async', 'true'); gtagScript.setAttribute('src', 'https://www.googletagmanager.com/gtag/js'); document.head.appendChild(gtagScript); }; const XSRFToken = getXSRFTokenFromCookie(); let conversionActions; const reportEvent = (eventName, eventParams) => { if (typeof gtag !== 'function') { loadGtag(); } const category = eventNameToConversionActionCategory[eventName]; const conversionAction = conversionActions.find( (currentConversionAction) => currentConversionAction.category.category === category, ); if (conversionAction) { gtag('config', conversionAction.conversionId); let conversionData = { send_to: `${conversionAction.conversionId}/${conversionAction.conversionLabel}`, }; switch (category) { case 'PURCHASE': { const { revenue, id, currency, coupon, ...params } = eventParams; conversionData = { ...conversionData, ...paramsMapper({ revenue, id, currency, coupon }, channelParams), transactionId: eventParams.id, items: mapContents(params), }; break; } default: break; } gtag('event', 'conversion', conversionData); } }; // @ts-expect-error wixDevelopersAnalytics window.wixDevelopersAnalytics.register( 'd6708a0e-5b2a-458e-8cfe-bdca240aa2ce', (eventName, eventParams) => { console.log('registering ga event reporter'); if (conversionActions) { reportEvent(eventName, eventParams); } else { const headers = { 'Content-Type': 'application/json', 'X-XSRF-TOKEN': XSRFToken, }; const getAppToken = window.wixEmbedsAPI?.getAppToken; if (getAppToken) { console.log('ASSIGNING AUTHORIZATION HEADER'); headers.authorization = getAppToken(METASITE_APP_DEF_ID); } const metaSiteId = window.wixEmbedsAPI?.getMetaSiteId(); console.log({ metaSiteId }); fetch( `${window.location.origin}/_serverless/pa-google/v1/accounts/current-site/conversion-actions?metaSiteId=${metaSiteId}`, { method: 'GET', headers, }, ) .then((response) => response.json()) .then((data) => { conversionActions = data.conversionActions; reportEvent(eventName, eventParams); }); } }, ); } console.log('ga event report embedded'); // @ts-expect-error wixDevelopersAnalytics window.wixDevelopersAnalytics ? registerListener() : window.addEventListener('wixDevelopersAnalyticsReady', registerListener);
top of page

The 5 best Eateries in Terlingua, Texas

Hello everyone, I've decided to start a blog about our business, Paisano Azul Ranch, things to do in Terlingua and the Big Bend area to the best of my ability. I hope we will have fun and learn about this amazing area together. So, let's get started.


I started coming down to the Terlingua area in 2016. Believe it or not, the little town of Terlingua has grown in the past 6 years! There were only a few restaurants at the time. One has closed. A few have changed locations or changed owners, but the food has always stayed exceptional. These are my Top 5 placed to grab a bite and refuel after a long day of hiking, biking or paddling.


#5 High Sierra

The High Sierra is located at 100 Ghosttown Rd. It is great little watering hole to get Tex mex food and a cold beverage. The taco salad is my favorite, but the fajitas are great also. The restaurant has a cool outside patio to sit and enjoy the view or you can cozy up to the bar and have a cold beer. During the peak season of October- May there is usually live bands on Friday and Saturday nights.


#4 Chili Pepper Cafe

The Chili Pepper cafe is located at 100 TX, Hwy 118. The Chili Pepper also has great mexican food. It is open in the mornings, so if you are hankering for the all favorite breakfast burrito, the chili pepper has you covered. For lunch, a large selection of Mexican food favorites including gooey cheese enchiladas that will hit the spot. It has a covered outdoor patio with beautiful plants which give the patio a wonderful, boho outdoor feel.


3#LongDraw Pizza

LongDraw Pizza is located at 22720 FM 170. I have to say hands down, this is my favorite pizza joint in TEXAS! JS. They have a wide selection of pizza toppings and crusts. My particular favorite is Six Shooter on a cauliflower crust. You can have a cold beer with your pizza or a glass of wine. Do try to make plans to go during the week or weekend, because they are closed on Monday and Tuesdays.


#2 DB's Rustic Iron BBQ

DB's has recently moved to 10 Terlingua Ghost town Rd. DB's BBQ is phenomenal. The brisket is lean and perfectly smoked and the ribs melt in your mouth! (I'm making myself hungry,lol). DB's has a great selection of beers and seltzer drinks. He runs nightly specials during the week and has Karaoke on Friday's! So if your hungry for some good BBQ, DB's is the place! He is closed on Monday's.


#1 Starlight Theater

Startlight Theater is located 631 Ivey Rd. Starlight is the iconic restaurant which everyone needs to eat at to say they visited Terlingua. The texas style food is mouthwatering and the atmosphere is fun and funky. They have a large selection of delicious margaritas or any other drink you may fancy. Get there early to get your name on the list for seating. You can enjoy your drink while sitting on the porch looking at the Chisos Mountains while waiting for your table. The starlight theater is great place to meet friends, hang out and enjoy great Texas Music.


I hope you find the this blog helpful and I'll see you around town!

43 views0 comments

Recent Posts

See All
bottom of page