[object Object]

← back to Beverlyhillsvideos

Reduce ad saturation and expose crawler discovery

3b19ab72f329053f147d7ecbf12ea8e63f143d33 · 2026-09-03 07:58:07 -0700 · Steve Abrams

Files touched

Diff

commit 3b19ab72f329053f147d7ecbf12ea8e63f143d33
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Sep 3 07:58:07 2026 -0700

    Reduce ad saturation and expose crawler discovery
---
 build.mjs                                            | 6 +++---
 public/index.html                                    | 2 +-
 public/posts/beverly-hills-attorneys.html            | 6 +++---
 public/posts/beverly-hills-cosmetic-doctors.html     | 6 +++---
 public/posts/beverly-hills-nightlife.html            | 8 ++++----
 public/posts/beverly-hills-real-estate.html          | 8 ++++----
 public/posts/beverly-hills-wellness-spas.html        | 8 ++++----
 public/posts/dining-in-beverly-hills.html            | 8 ++++----
 public/posts/rodeo-drive-guide.html                  | 8 ++++----
 public/posts/staying-fit-beverly-hills.html          | 8 ++++----
 public/posts/things-to-do-beverly-hills.html         | 8 ++++----
 public/privacy.html                                  | 2 +-
 public/restaurants/88-club.html                      | 2 +-
 public/restaurants/avra-beverly-hills.html           | 2 +-
 public/restaurants/azur-beverly-hills.html           | 2 +-
 public/restaurants/bad-roman.html                    | 2 +-
 public/restaurants/cipriani.html                     | 2 +-
 public/restaurants/culina-four-seasons.html          | 2 +-
 public/restaurants/cut.html                          | 2 +-
 public/restaurants/dante-beverly-hills.html          | 2 +-
 public/restaurants/e-baldi.html                      | 2 +-
 public/restaurants/fogo-de-chao.html                 | 2 +-
 public/restaurants/frida-beverly-hills.html          | 2 +-
 public/restaurants/funke.html                        | 2 +-
 public/restaurants/il-cielo.html                     | 2 +-
 public/restaurants/il-pastaio.html                   | 2 +-
 public/restaurants/kazan.html                        | 2 +-
 public/restaurants/la-scala.html                     | 2 +-
 public/restaurants/lawry-s-the-prime-rib.html        | 2 +-
 public/restaurants/marea.html                        | 2 +-
 public/restaurants/mastros.html                      | 2 +-
 public/restaurants/matsuhisa.html                    | 2 +-
 public/restaurants/matu.html                         | 2 +-
 public/restaurants/miura.html                        | 2 +-
 public/restaurants/mr-chow.html                      | 2 +-
 public/restaurants/nate-n-al-s.html                  | 2 +-
 public/restaurants/nozawa-bar.html                   | 2 +-
 public/restaurants/ocean-prime.html                  | 2 +-
 public/restaurants/piccolo-paradiso.html             | 2 +-
 public/restaurants/porta-via.html                    | 2 +-
 public/restaurants/south-beverly-grill.html          | 2 +-
 public/restaurants/spago.html                        | 2 +-
 public/restaurants/steak-48.html                     | 2 +-
 public/restaurants/sugarfish-beverly-hills.html      | 2 +-
 public/restaurants/tempura-endo.html                 | 2 +-
 public/restaurants/the-belvedere.html                | 2 +-
 public/restaurants/the-blvd.html                     | 2 +-
 public/restaurants/the-grill-on-the-alley.html       | 2 +-
 public/restaurants/the-hideaway.html                 | 2 +-
 public/restaurants/the-honor-bar.html                | 2 +-
 public/restaurants/the-polo-lounge.html              | 2 +-
 public/restaurants/the-rooftop-by-jg.html            | 2 +-
 public/restaurants/the-terrace-at-the-maybourne.html | 2 +-
 public/restaurants/via-alloro.html                   | 2 +-
 public/restaurants/wally-s.html                      | 2 +-
 public/restaurants/xi-an.html                        | 2 +-
 public/videos.html                                   | 2 +-
 server.js                                            | 7 +++++++
 58 files changed, 91 insertions(+), 84 deletions(-)

diff --git a/build.mjs b/build.mjs
index 9275f8a..4c47d6b 100644
--- a/build.mjs
+++ b/build.mjs
@@ -23,9 +23,9 @@ const ADSENSE_SLOTS = {
   article_foot: '',
 };
 const adSlot = (name = 'default') => {
-  const slot = ADSENSE_SLOTS[name] || ADSENSE_SLOTS.default;
-  if (slot) return `<div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="${ADSENSE_PUB}" data-ad-slot="${slot}" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>`;
-  return `<div class="ad-wrap ad-ph"><span class="ad-label">Advertisement</span><span class="ad-ph-note">AdSense slot “${name}” — set ADSENSE_SLOTS.${name} (or .default) in build.mjs</span></div>`;
+  // AdSense review remediation: rely on Auto ads' content-aware placement.
+  // Repeated manual units made editorial pages look ad-heavy/low-value.
+  return '';
 };
 
 const POSTS = [
diff --git a/public/index.html b/public/index.html
index 91f4ed3..1c67765 100644
--- a/public/index.html
+++ b/public/index.html
@@ -156,7 +156,7 @@
       </div>
     </div>
   </section>
-  <div class="wrap"><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div></div>
+  <div class="wrap"></div>
   <section class="home-vids">
     <div class="wrap">
       <div class="vch-head"><h2>From the city, on video</h2><a class="vch-link" href="/videos.html">All videos →</a></div>
diff --git a/public/posts/beverly-hills-attorneys.html b/public/posts/beverly-hills-attorneys.html
index 82f312c..29f942b 100644
--- a/public/posts/beverly-hills-attorneys.html
+++ b/public/posts/beverly-hills-attorneys.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · LAW</p>
       <h1>The Attorneys of Beverly Hills: Inside the City’s Legal Power Center</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <p>Beverly Hills is known to the world for its shopping and its glamour, but within the legal profession it is known for something else: gravitas. Concentrated along Wilshire Boulevard and the surrounding Golden Triangle is one of the densest clusters of high-profile attorneys in the country — the entertainment lawyers who paper the deals behind studio releases, the family-law specialists who handle the most closely watched divorces in America, and the litigators and business counsel who represent boldface names and blue-chip companies alike. Here is an informational look at how Beverly Hills became a legal power center, the practice areas that define it, and how to think about choosing counsel.</p>
       <figure class="p-vid p-yt">
         <div class="frame"><iframe src="https://www.youtube.com/embed/kaw1nwnp07c" title="Hidden Art of Beverly Hills · The Maybourne" loading="lazy" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
@@ -95,7 +95,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/spago.jpg"><source src="/video/spago.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/spago.html">Spago Beverly Hills</a><span>Wolfgang Puck’s flagship on Canon Drive — the restaurant that helped define California fine dining.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <h3>How to Choose Counsel Wisely</h3>
 
@@ -205,7 +205,7 @@
         <figcaption><a href="/restaurants/il-pastaio.html">Il Pastaio</a><span>At the corner of Canon and Brighton, Il Pastaio is Beverly Hills' beloved sidewalk trattoria.</span></figcaption>
       </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/beverly-hills-real-estate.html">Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</a></li><li><a href="/posts/rodeo-drive-guide.html">Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</a></li><li><a href="/posts/things-to-do-beverly-hills.html">Things to Do in Beverly Hills: A Local’s Guide</a></li></ul>
diff --git a/public/posts/beverly-hills-cosmetic-doctors.html b/public/posts/beverly-hills-cosmetic-doctors.html
index 21627cb..7f2c0aa 100644
--- a/public/posts/beverly-hills-cosmetic-doctors.html
+++ b/public/posts/beverly-hills-cosmetic-doctors.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · MEDICINE</p>
       <h1>The Cosmetic-Medicine Capital: Beverly Hills Doctors, Dermatologists & Medspas</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <p>If there is a single zip code the world associates with looking one's best, it is 90210. Long before reality television and red-carpet culture made cosmetic medicine a mainstream conversation, Beverly Hills had quietly become its global capital — a few square miles with one of the highest concentrations of board-certified plastic surgeons, dermatologists, and aesthetic specialists anywhere on earth. Patients fly in from other states and other continents for a consultation on Bedford Drive. Here is a friendly, informational look at how the city earned that reputation, what the landscape actually looks like, and — most importantly — how to choose a provider wisely.</p>
       <figure class="p-vid p-yt">
         <div class="frame"><iframe src="https://www.youtube.com/embed/2JEIBvlX_Ws" title="The Maybourne Beverly Hills · Forbes Travel Guide Five-Star" loading="lazy" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
@@ -95,7 +95,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/funke.jpg"><source src="/video/funke.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/funke.html">Funke</a><span>Tucked along South Santa Monica Boulevard, Funke is chef Evan Funke's temple to handmade pasta.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <h3>How to Choose a Provider Wisely</h3>
 
@@ -197,7 +197,7 @@
         <figcaption><a href="/restaurants/matsuhisa.html">Matsuhisa</a><span>On La Cienega, Matsuhisa is where Nobu Matsuhisa changed sushi forever.</span></figcaption>
       </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/beverly-hills-real-estate.html">Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</a></li><li><a href="/posts/rodeo-drive-guide.html">Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</a></li><li><a href="/posts/things-to-do-beverly-hills.html">Things to Do in Beverly Hills: A Local’s Guide</a></li></ul>
diff --git a/public/posts/beverly-hills-nightlife.html b/public/posts/beverly-hills-nightlife.html
index cb8d33e..05b3e85 100644
--- a/public/posts/beverly-hills-nightlife.html
+++ b/public/posts/beverly-hills-nightlife.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · NIGHTLIFE</p>
       <h1>Beverly Hills After Dark: Bars, Lounges & the Evening Scene</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <p>When the sun sets over the palm-lined boulevards, Beverly Hills doesn't so much switch on as it settles in. This is not a nightclub town, and it never really has been. The city's evening character is refined, grown-up, and unhurried — an experience built around legendary hotel bars, candlelit dining rooms, and craft cocktails sipped on garden patios rather than crowded dance floors and velvet ropes. If you're picturing thumping bass and bottle-service theatrics, you're picturing West Hollywood, just minutes to the north. Beverly Hills after dark is a different, quieter kind of glamour: the martini, not the mosh pit.</p>
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/spago.jpg"><source src="/video/spago.mp4" type="video/mp4"></video>
@@ -85,7 +85,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/matsuhisa.jpg"><source src="/video/matsuhisa.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/matsuhisa.html">Matsuhisa</a><span>On La Cienega, Matsuhisa is where Nobu Matsuhisa changed sushi forever.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <p>This is a place where the bar of a great restaurant is often the best seat in the house — walk-in-friendly, buzzing with regulars, and pouring the same craft cocktails and considered wine list as the main room. Late-night dining is refined rather than raucous: think a well-shaken cocktail, a shared plate, and a patio table where the point is to see and be seen without ever feeling like a scene.</p>
       <figure class="p-vid p-film">
@@ -129,9 +129,9 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/la-scala.jpg"><source src="/video/la-scala.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/la-scala.html">La Scala</a><span>A Beverly Hills institution since 1956, La Scala on Canon Drive is home of the original chopped salad.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/beverly-hills-real-estate.html">Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</a></li><li><a href="/posts/rodeo-drive-guide.html">Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</a></li><li><a href="/posts/things-to-do-beverly-hills.html">Things to Do in Beverly Hills: A Local’s Guide</a></li></ul>
diff --git a/public/posts/beverly-hills-real-estate.html b/public/posts/beverly-hills-real-estate.html
index 4683e0c..149142b 100644
--- a/public/posts/beverly-hills-real-estate.html
+++ b/public/posts/beverly-hills-real-estate.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · REAL ESTATE</p>
       <h1>Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <h2>Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</h2>
 <p>Few place names carry the instant recognition of Beverly Hills. The 90210 zip code has become shorthand for prestige itself — a brand exported through decades of film, television, and celebrity culture that no marketing budget could ever replicate. But the enduring desirability of Beverly Hills real estate rests on something far more concrete than reputation. It is a rare convergence of geography, privacy, architectural heritage, and land scarcity that continues to draw the world's most discerning buyers.</p>
       <figure class="p-vid p-yt">
@@ -84,7 +84,7 @@
       <figure class="p-vid p-yt">
         <div class="frame"><iframe src="https://www.youtube.com/embed/QsuX5VkIJEc" title="Modern Upgrades Meet Scandinavian Warmth" loading="lazy" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
         <figcaption>Modern Upgrades Meet Scandinavian Warmth<span>Christophe Choo</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <h3>Beverly Hills Post Office (BHPO)</h3>
 <p>The Beverly Hills Post Office area encompasses the canyons and ridgelines above the city that share the coveted Beverly Hills mailing address while falling under Los Angeles municipal boundaries. BHPO appeals to buyers seeking larger, more private compounds, more land for the money, and a more rustic, canyon setting. Because of its distinct jurisdiction and character, it functions as its own submarket with its own considerations around access, services, and pricing.</p>
@@ -117,7 +117,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/matsuhisa.jpg"><source src="/video/matsuhisa.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/matsuhisa.html">Matsuhisa</a><span>On La Cienega, Matsuhisa is where Nobu Matsuhisa changed sushi forever.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <h2>What Buyers Look For</h2>
 <p>Beyond location and pedigree, certain characteristics recur on the wish lists of high-end buyers:</p>
@@ -145,7 +145,7 @@
         <figcaption><a href="/restaurants/the-grill-on-the-alley.html">The Grill on the Alley</a><span>Tucked off Dayton Way, The Grill on the Alley is Beverly Hills' quintessential power-lunch table.</span></figcaption>
       </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/rodeo-drive-guide.html">Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</a></li><li><a href="/posts/things-to-do-beverly-hills.html">Things to Do in Beverly Hills: A Local’s Guide</a></li><li><a href="/posts/dining-in-beverly-hills.html">Dining in Beverly Hills: From Power Lunches to Iconic Institutions</a></li></ul>
diff --git a/public/posts/beverly-hills-wellness-spas.html b/public/posts/beverly-hills-wellness-spas.html
index 003ca81..3c3ad5b 100644
--- a/public/posts/beverly-hills-wellness-spas.html
+++ b/public/posts/beverly-hills-wellness-spas.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · WELLNESS</p>
       <h1>Wellness & Spas in Beverly Hills: The Capital of Self-Care</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <p>Few places have wrapped the idea of self-care into their very identity the way Beverly Hills has. Beyond the storefronts of Rodeo Drive and the palm-lined boulevards, the city has quietly become one of the world's most concentrated destinations for rest, restoration, and beauty. Here, a day devoted to feeling better is not an indulgence tucked into a busy schedule — it is a genuine reason to visit. From marble-clad hotel spas to holistic recovery studios and garden strolls, Beverly Hills offers a rare thing: an entire small city organized, almost from the sidewalk up, around the pursuit of well-being.</p>
       <figure class="p-vid p-yt">
         <div class="frame"><iframe src="https://www.youtube.com/embed/2JEIBvlX_Ws" title="The Maybourne Beverly Hills · Forbes Travel Guide Five-Star" loading="lazy" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
@@ -85,7 +85,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/funke.jpg"><source src="/video/funke.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/funke.html">Funke</a><span>Tucked along South Santa Monica Boulevard, Funke is chef Evan Funke's temple to handmade pasta.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <p>In practice, the offerings range widely: professional facials and skincare consultations, chemical peels, laser and light-based treatments, injectables, and a broad menu of dermatological and cosmetic services. Alongside these clinical practices sits a robust world of skincare boutiques and product-focused studios where the emphasis is on healthy skin, education, and routine.</p>
       <figure class="p-vid p-film">
@@ -126,7 +126,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/avra-beverly-hills.jpg"><source src="/video/avra-beverly-hills.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/avra-beverly-hills.html">Avra Beverly Hills</a><span>On North Beverly Drive, Avra brings the Greek islands to Beverly Hills.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <p>That low-stress rhythm — sunlight, greenery, unhurried sidewalks — is itself a form of self-care, and it is arguably the city's most underrated wellness amenity.</p>
       <figure class="p-vid p-film">
@@ -156,7 +156,7 @@
         <figcaption><a href="/restaurants/la-scala.html">La Scala</a><span>A Beverly Hills institution since 1956, La Scala on Canon Drive is home of the original chopped salad.</span></figcaption>
       </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/beverly-hills-real-estate.html">Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</a></li><li><a href="/posts/rodeo-drive-guide.html">Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</a></li><li><a href="/posts/things-to-do-beverly-hills.html">Things to Do in Beverly Hills: A Local’s Guide</a></li></ul>
diff --git a/public/posts/dining-in-beverly-hills.html b/public/posts/dining-in-beverly-hills.html
index 54163ef..c58a43c 100644
--- a/public/posts/dining-in-beverly-hills.html
+++ b/public/posts/dining-in-beverly-hills.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · DINING</p>
       <h1>Dining in Beverly Hills: From Power Lunches to Iconic Institutions</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <h2>The Dining Table Where Beverly Hills Does Business</h2>
 
 <p>In most cities, restaurants are where you go after the work is done. In Beverly Hills, the restaurant often <em>is</em> the work. For generations, this small but outsized city has treated the meal as a stage — a place where deals are struck, careers are made or unmade, and the line between doing business and being seen quietly disappears. To dine here is to participate in a ritual that has shaped Hollywood, real estate, fashion, and finance for the better part of a century.</p>
@@ -94,7 +94,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/matsuhisa.jpg"><source src="/video/matsuhisa.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/matsuhisa.html">Matsuhisa</a><span>On La Cienega, Matsuhisa is where Nobu Matsuhisa changed sushi forever.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <p>A short drive away, <strong>The Beverly Wilshire</strong> — the grand hotel anchoring the base of Rodeo Drive — carries its own storied dining tradition, blending old-world elegance with the pull of one of the world's most famous shopping streets. These hotel dining rooms endure because they offer more than food: they offer atmosphere, discretion when it's wanted, and a sense of occasion that a standalone restaurant rarely matches.</p>
       <figure class="p-vid p-film">
@@ -138,7 +138,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/la-scala.jpg"><source src="/video/la-scala.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/la-scala.html">La Scala</a><span>A Beverly Hills institution since 1956, La Scala on Canon Drive is home of the original chopped salad.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <h2>What to Expect at the High End</h2>
 
@@ -178,7 +178,7 @@
         <figcaption><a href="/restaurants/the-belvedere.html">The Belvedere</a><span>At the Peninsula Beverly Hills, The Belvedere is refined hotel dining at its finest. A jewel-box…</span></figcaption>
       </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/beverly-hills-real-estate.html">Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</a></li><li><a href="/posts/rodeo-drive-guide.html">Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</a></li><li><a href="/posts/things-to-do-beverly-hills.html">Things to Do in Beverly Hills: A Local’s Guide</a></li></ul>
diff --git a/public/posts/rodeo-drive-guide.html b/public/posts/rodeo-drive-guide.html
index 7e7f8d8..0471c5d 100644
--- a/public/posts/rodeo-drive-guide.html
+++ b/public/posts/rodeo-drive-guide.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · SHOPPING</p>
       <h1>Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <h2>Rodeo Drive: A Guide to the World's Most Famous Shopping Street</h2>
 
 <p>There are shopping streets, and then there is Rodeo Drive. Tucked into the heart of Beverly Hills, this stretch of pavement has become shorthand for a particular kind of glamour — the sun-warmed, palm-lined, camera-ready luxury that the world associates with Southern California. Yet what surprises most first-time visitors is how compact it all is. The famous luxury corridor runs just three blocks, from Wilshire Boulevard to Santa Monica Boulevard. In that short walk sits one of the most concentrated displays of fashion, architecture, and people-watching anywhere on earth — and, refreshingly, it costs nothing to stroll.</p>
@@ -87,7 +87,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/spago.jpg"><source src="/video/spago.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/spago.html">Spago Beverly Hills</a><span>Wolfgang Puck’s flagship on Canon Drive — the restaurant that helped define California fine dining.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <p>Look down as you walk and you may notice the <strong>Rodeo Drive Walk of Style</strong>, a tribute honoring influential figures in fashion and entertainment. Set into the streetscape, it celebrates the designers and icons who shaped the industry, reinforcing the drive's role as a cultural landmark rather than merely a commercial one.</p>
       <figure class="p-vid p-film">
@@ -121,7 +121,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/lawry-s-the-prime-rib.jpg"><source src="/video/lawry-s-the-prime-rib.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/lawry-s-the-prime-rib.html">Lawry's The Prime Rib</a><span>Since 1938, Lawry's The Prime Rib has carved its legend tableside from gleaming silver carts.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <ul>
 <li><strong>It's free to explore.</strong> You are welcome to walk, browse windows, and take photos whether or not you intend to buy anything. No one expects every visitor to be a shopper.</li>
@@ -159,7 +159,7 @@
         <figcaption><a href="/restaurants/la-scala.html">La Scala</a><span>A Beverly Hills institution since 1956, La Scala on Canon Drive is home of the original chopped salad.</span></figcaption>
       </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/beverly-hills-real-estate.html">Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</a></li><li><a href="/posts/things-to-do-beverly-hills.html">Things to Do in Beverly Hills: A Local’s Guide</a></li><li><a href="/posts/dining-in-beverly-hills.html">Dining in Beverly Hills: From Power Lunches to Iconic Institutions</a></li></ul>
diff --git a/public/posts/staying-fit-beverly-hills.html b/public/posts/staying-fit-beverly-hills.html
index 14fabeb..ff18cb5 100644
--- a/public/posts/staying-fit-beverly-hills.html
+++ b/public/posts/staying-fit-beverly-hills.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · FITNESS</p>
       <h1>Staying Fit in Beverly Hills: Studios, Trainers & the Outdoors</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <p>Beverly Hills has a well-earned reputation as a place where wellness is woven into daily life. The combination of a mild, sunny climate, a walkable core, and a dense cluster of high-end studios means that staying active here is less an obligation than a lifestyle. Whether you live in the flats, work near Rodeo Drive, or are visiting for a few days, the options range from meticulously programmed boutique classes to some of the best free hiking trails in Los Angeles. Here is a friendly, practical guide to moving your body in and around Beverly Hills.</p>
       <figure class="p-vid p-yt">
         <div class="frame"><iframe src="https://www.youtube.com/embed/2JEIBvlX_Ws" title="The Maybourne Beverly Hills · Forbes Travel Guide Five-Star" loading="lazy" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
@@ -93,7 +93,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/funke.jpg"><source src="/video/funke.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/funke.html">Funke</a><span>Tucked along South Santa Monica Boulevard, Funke is chef Evan Funke's temple to handmade pasta.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <h3>Full-Service Gyms and Hotel Fitness</h3>
 
@@ -133,7 +133,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/avra-beverly-hills.jpg"><source src="/video/avra-beverly-hills.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/avra-beverly-hills.html">Avra Beverly Hills</a><span>On North Beverly Drive, Avra brings the Greek islands to Beverly Hills.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <ul>
   <li><strong>Beat the heat.</strong> Even in a mild climate, midday sun on an exposed trail adds up. Early morning is cooler, quieter, and easier on parking.</li>
@@ -150,7 +150,7 @@
         <figcaption><a href="/restaurants/the-grill-on-the-alley.html">The Grill on the Alley</a><span>Tucked off Dayton Way, The Grill on the Alley is Beverly Hills' quintessential power-lunch table.</span></figcaption>
       </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/beverly-hills-real-estate.html">Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</a></li><li><a href="/posts/rodeo-drive-guide.html">Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</a></li><li><a href="/posts/things-to-do-beverly-hills.html">Things to Do in Beverly Hills: A Local’s Guide</a></li></ul>
diff --git a/public/posts/things-to-do-beverly-hills.html b/public/posts/things-to-do-beverly-hills.html
index f79708f..924ad03 100644
--- a/public/posts/things-to-do-beverly-hills.html
+++ b/public/posts/things-to-do-beverly-hills.html
@@ -52,7 +52,7 @@
     <div class="wrap">
       <p class="crumb"><a href="/">Home</a> · CITY GUIDE</p>
       <h1>Things to Do in Beverly Hills: A Local’s Guide</h1>
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <h2>Things to Do in Beverly Hills: A Local's Guide</h2>
 
 <p>Beverly Hills gets shorthanded as a place to gawk at price tags, but locals know it as one of the most walkable, garden-rich, and quietly historic pockets of Los Angeles. Between manicured public parks, a genuinely great architectural heritage, and easy access to canyon trails, you can spend a full day here without setting foot in a boutique. This guide leans into the free and the evergreen — the places that reward a curious visitor rather than a big wallet.</p>
@@ -89,7 +89,7 @@
       <figure class="p-vid p-yt">
         <div class="frame"><iframe src="https://www.youtube.com/embed/jdcUKhEOqH4" title="Rodeo Drive Concours d’Elegance" loading="lazy" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
         <figcaption>Rodeo Drive Concours d’Elegance<span>Love Beverly Hills</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <h3>The Paley Center for Media</h3>
 
@@ -129,7 +129,7 @@
       <figure class="p-vid p-film">
         <video controls preload="none" playsinline poster="/video/funke.jpg"><source src="/video/funke.mp4" type="video/mp4"></video>
         <figcaption><a href="/restaurants/funke.html">Funke</a><span>Tucked along South Santa Monica Boulevard, Funke is chef Evan Funke's temple to handmade pasta.</span></figcaption>
-      </figure><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      </figure>
 
 <h3>Farmers Markets and Seasonal Events</h3>
 
@@ -155,7 +155,7 @@
         <figcaption><a href="/restaurants/il-pastaio.html">Il Pastaio</a><span>At the corner of Canon and Brighton, Il Pastaio is Beverly Hills' beloved sidewalk trattoria.</span></figcaption>
       </figure>
 
-      <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+      
       <div class="more">
         <h3>More from Beverly Hills Videos</h3>
         <ul><li><a href="/posts/beverly-hills-real-estate.html">Why Beverly Hills Real Estate Sits at the Summit of Global Luxury</a></li><li><a href="/posts/rodeo-drive-guide.html">Rodeo Drive: A Guide to the World’s Most Famous Shopping Street</a></li><li><a href="/posts/dining-in-beverly-hills.html">Dining in Beverly Hills: From Power Lunches to Iconic Institutions</a></li></ul>
diff --git a/public/privacy.html b/public/privacy.html
index 8c5a9ca..88feda1 100644
--- a/public/privacy.html
+++ b/public/privacy.html
@@ -51,7 +51,7 @@
   <article class="post">
     <div class="wrap">
       <h1>Privacy Policy</h1>
-      <p class="crumb">Beverly Hills Videos · beverlyhillsvideos.com · Last updated August 6, 2026</p>
+      <p class="crumb">Beverly Hills Videos · beverlyhillsvideos.com · Last updated September 3, 2026</p>
       <p>This policy explains what Beverly Hills Videos collects, how we use it, and your choices.</p>
       <h2>Information we collect</h2>
       <p>Standard server logs (IP address, browser type, referring pages, timestamps) and information stored in
diff --git a/public/restaurants/88-club.html b/public/restaurants/88-club.html
index 551f1bf..2c613f9 100644
--- a/public/restaurants/88-club.html
+++ b/public/restaurants/88-club.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13109689955">Call +1-310-968-9955</a>
         <a class="pmenu" href="https://www.88clubbh.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/avra-beverly-hills.html b/public/restaurants/avra-beverly-hills.html
index 1fc223e..f79220f 100644
--- a/public/restaurants/avra-beverly-hills.html
+++ b/public/restaurants/avra-beverly-hills.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13104254200">Call +1-310-425-4200</a>
         <a class="pmenu" href="https://theavragroup.com/avra-menus/beverly-hills-all-day" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/azur-beverly-hills.html b/public/restaurants/azur-beverly-hills.html
index b62fa11..d8efb7b 100644
--- a/public/restaurants/azur-beverly-hills.html
+++ b/public/restaurants/azur-beverly-hills.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13109339955">Call +1-310-933-9955</a>
         <a class="pmenu" href="https://www.azurbeverlyhills.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/bad-roman.html b/public/restaurants/bad-roman.html
index 1102dff..2e9de56 100644
--- a/public/restaurants/bad-roman.html
+++ b/public/restaurants/bad-roman.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13108614040">Call +1-310-861-4040</a>
         <a class="pmenu" href="https://www.badromanrestaurants.com/menus-beverly-hills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/cipriani.html b/public/restaurants/cipriani.html
index 3056ce5..34a101a 100644
--- a/public/restaurants/cipriani.html
+++ b/public/restaurants/cipriani.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102719600">Call +1-310-271-9600</a>
         <a class="pmenu" href="https://www.cipriani.com/cipriani-beverly-hills" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/culina-four-seasons.html b/public/restaurants/culina-four-seasons.html
index fd2c4e0..348860c 100644
--- a/public/restaurants/culina-four-seasons.html
+++ b/public/restaurants/culina-four-seasons.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13108604000">Call +1-310-860-4000</a>
         <a class="pmenu" href="https://www.culinarestaurant.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/cut.html b/public/restaurants/cut.html
index 4898d3b..81ad76a 100644
--- a/public/restaurants/cut.html
+++ b/public/restaurants/cut.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102768500">Call +1-310-276-8500</a>
         <a class="pmenu" href="https://wolfgangpuck.com/restaurants/cut-beverly-hills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/dante-beverly-hills.html b/public/restaurants/dante-beverly-hills.html
index 67a3c65..3648938 100644
--- a/public/restaurants/dante-beverly-hills.html
+++ b/public/restaurants/dante-beverly-hills.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13108607989">Call +1-310-860-7989</a>
         <a class="pmenu" href="https://www.dantebeverlyhills.com/menus-1/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/e-baldi.html b/public/restaurants/e-baldi.html
index f297fb8..392dad7 100644
--- a/public/restaurants/e-baldi.html
+++ b/public/restaurants/e-baldi.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102482633">Call +1-310-248-2633</a>
         <a class="pmenu" href="https://ebaldi.com/menu-intro" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/fogo-de-chao.html b/public/restaurants/fogo-de-chao.html
index a4a4aa8..33df631 100644
--- a/public/restaurants/fogo-de-chao.html
+++ b/public/restaurants/fogo-de-chao.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102897755">Call +1-310-289-7755</a>
         <a class="pmenu" href="https://fogodechao.com/location/beverly-hills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/frida-beverly-hills.html b/public/restaurants/frida-beverly-hills.html
index cdcde37..8c3071f 100644
--- a/public/restaurants/frida-beverly-hills.html
+++ b/public/restaurants/frida-beverly-hills.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102787666">Call +1-310-278-7666</a>
         <a class="pmenu" href="https://www.fridarestaurant.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/funke.html b/public/restaurants/funke.html
index 15adf54..6c72699 100644
--- a/public/restaurants/funke.html
+++ b/public/restaurants/funke.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13103413737">Call +1-310-341-3737</a>
         <a class="pmenu" href="https://www.funkela.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/il-cielo.html b/public/restaurants/il-cielo.html
index d3c5b0e..b951c36 100644
--- a/public/restaurants/il-cielo.html
+++ b/public/restaurants/il-cielo.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102769990">Call +1-310-276-9990</a>
         <a class="pmenu" href="https://www.ilcielo.com/menus/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/il-pastaio.html b/public/restaurants/il-pastaio.html
index 85a48ab..ceffb06 100644
--- a/public/restaurants/il-pastaio.html
+++ b/public/restaurants/il-pastaio.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102055444">Call +1-310-205-5444</a>
         <a class="pmenu" href="https://www.ilpastaiobeverlyhills.com/our-menu/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/kazan.html b/public/restaurants/kazan.html
index 4b7314b..299f0f7 100644
--- a/public/restaurants/kazan.html
+++ b/public/restaurants/kazan.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+14245129101">Call +1-424-512-9101</a>
         <a class="pmenu" href="https://kazanbeverlyhills.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/la-scala.html b/public/restaurants/la-scala.html
index 636a713..77bd9ff 100644
--- a/public/restaurants/la-scala.html
+++ b/public/restaurants/la-scala.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102750579">Call +1-310-275-0579</a>
         <a class="pmenu" href="https://www.lascalabeverlyhills.com/menu" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/lawry-s-the-prime-rib.html b/public/restaurants/lawry-s-the-prime-rib.html
index 62690c9..e5aba6c 100644
--- a/public/restaurants/lawry-s-the-prime-rib.html
+++ b/public/restaurants/lawry-s-the-prime-rib.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13106522827">Call +1-310-652-2827</a>
         <a class="pmenu" href="https://www.lawrysonline.com/lawrys-the-prime-rib-beverly-hills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/marea.html b/public/restaurants/marea.html
index 4fbf77c..62215da 100644
--- a/public/restaurants/marea.html
+++ b/public/restaurants/marea.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13106208463">Call +1-310-620-8463</a>
         <a class="pmenu" href="https://www.marearestaurant.com/beverly-hills/menu" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/mastros.html b/public/restaurants/mastros.html
index a1a9024..6a24030 100644
--- a/public/restaurants/mastros.html
+++ b/public/restaurants/mastros.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13108888782">Call +1-310-888-8782</a>
         <a class="pmenu" href="https://www.mastrosrestaurants.com/location/mastros-steakhouse-beverly-hills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/matsuhisa.html b/public/restaurants/matsuhisa.html
index 0609832..b235de4 100644
--- a/public/restaurants/matsuhisa.html
+++ b/public/restaurants/matsuhisa.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13106599639">Call +1-310-659-9639</a>
         <a class="pmenu" href="https://matsuhisabeverlyhills.com/menu/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/matu.html b/public/restaurants/matu.html
index 2031039..8a7fac6 100644
--- a/public/restaurants/matu.html
+++ b/public/restaurants/matu.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+14243175031">Call +1-424-317-5031</a>
         <a class="pmenu" href="https://www.matusteak.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/miura.html b/public/restaurants/miura.html
index 5614b8c..b1bef83 100644
--- a/public/restaurants/miura.html
+++ b/public/restaurants/miura.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+14242049584">Call +1-424-204-9584</a>
         <a class="pmenu" href="https://miura-beverlyhills.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/mr-chow.html b/public/restaurants/mr-chow.html
index 3a959ea..9dc9aee 100644
--- a/public/restaurants/mr-chow.html
+++ b/public/restaurants/mr-chow.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102789911">Call +1-310-278-9911</a>
         <a class="pmenu" href="https://www.mrchow.com/location/beverly-hills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/nate-n-al-s.html b/public/restaurants/nate-n-al-s.html
index 033bb16..ea820a5 100644
--- a/public/restaurants/nate-n-al-s.html
+++ b/public/restaurants/nate-n-al-s.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102740101">Call +1-310-274-0101</a>
         <a class="pmenu" href="https://natenals.com/menus-1" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/nozawa-bar.html b/public/restaurants/nozawa-bar.html
index 9ff239e..fdf191d 100644
--- a/public/restaurants/nozawa-bar.html
+++ b/public/restaurants/nozawa-bar.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+14242166158">Call +1-424-216-6158</a>
         <a class="pmenu" href="https://www.exploretock.com/nozawabar" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/ocean-prime.html b/public/restaurants/ocean-prime.html
index 23fa4d1..b5cbc43 100644
--- a/public/restaurants/ocean-prime.html
+++ b/public/restaurants/ocean-prime.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13108594818">Call +1-310-859-4818</a>
         <a class="pmenu" href="https://ocean-prime.com/locations-menus/beverly-hills/menus/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/piccolo-paradiso.html b/public/restaurants/piccolo-paradiso.html
index 0161f22..a727d7b 100644
--- a/public/restaurants/piccolo-paradiso.html
+++ b/public/restaurants/piccolo-paradiso.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102710030">Call +1-310-271-0030</a>
         <a class="pmenu" href="https://piccoloparadisobeverlyhills.com/our-menu/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/porta-via.html b/public/restaurants/porta-via.html
index 7bb746e..b5c778a 100644
--- a/public/restaurants/porta-via.html
+++ b/public/restaurants/porta-via.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102746534">Call +1-310-274-6534</a>
         <a class="pmenu" href="https://portaviarestaurants.com/beverly-hills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/south-beverly-grill.html b/public/restaurants/south-beverly-grill.html
index d3ecbb5..94394a3 100644
--- a/public/restaurants/south-beverly-grill.html
+++ b/public/restaurants/south-beverly-grill.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13105500242">Call +1-310-550-0242</a>
         <a class="pmenu" href="https://southbeverlygrill.com/menu/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/spago.html b/public/restaurants/spago.html
index 43f542b..a758ca1 100644
--- a/public/restaurants/spago.html
+++ b/public/restaurants/spago.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13103850880">Call +1-310-385-0880</a>
         <a class="pmenu" href="https://wolfgangpuck.com/restaurants/spago-beverly-hills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/steak-48.html b/public/restaurants/steak-48.html
index cecc7e3..17fc14c 100644
--- a/public/restaurants/steak-48.html
+++ b/public/restaurants/steak-48.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13103598300">Call +1-310-359-8300</a>
         <a class="pmenu" href="https://www.steak48.com/steakhouses/beverly-hills/menus/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/sugarfish-beverly-hills.html b/public/restaurants/sugarfish-beverly-hills.html
index 699892d..8956d21 100644
--- a/public/restaurants/sugarfish-beverly-hills.html
+++ b/public/restaurants/sugarfish-beverly-hills.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102766900">Call +1-310-276-6900</a>
         <a class="pmenu" href="https://www.sugarfishsushi.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/tempura-endo.html b/public/restaurants/tempura-endo.html
index f81b69e..a1c4471 100644
--- a/public/restaurants/tempura-endo.html
+++ b/public/restaurants/tempura-endo.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13107080224">Call +1-310-708-0224</a>
         <a class="pmenu" href="http://www.beverlyhills-endo.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/the-belvedere.html b/public/restaurants/the-belvedere.html
index 32a7714..3df7b48 100644
--- a/public/restaurants/the-belvedere.html
+++ b/public/restaurants/the-belvedere.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13107882306">Call +1-310-788-2306</a>
         <a class="pmenu" href="https://www.peninsula.com/en/beverly-hills/hotel-fine-dining/the-belvedere" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/the-blvd.html b/public/restaurants/the-blvd.html
index b7e4ba7..22f9746 100644
--- a/public/restaurants/the-blvd.html
+++ b/public/restaurants/the-blvd.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13103853901">Call +1-310-385-3901</a>
         <a class="pmenu" href="https://www.theblvdrestaurant.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/the-grill-on-the-alley.html b/public/restaurants/the-grill-on-the-alley.html
index a17c2db..cf1bd02 100644
--- a/public/restaurants/the-grill-on-the-alley.html
+++ b/public/restaurants/the-grill-on-the-alley.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102760615">Call +1-310-276-0615</a>
         <a class="pmenu" href="https://thegrillonthealley.com/beverly-hills/beverly-hills-menu/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/the-hideaway.html b/public/restaurants/the-hideaway.html
index 0fd6815..6af7500 100644
--- a/public/restaurants/the-hideaway.html
+++ b/public/restaurants/the-hideaway.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13109748020">Call +1-310-974-8020</a>
         <a class="pmenu" href="https://www.thehideawaybeverlyhills.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/the-honor-bar.html b/public/restaurants/the-honor-bar.html
index 26a7828..f08eed3 100644
--- a/public/restaurants/the-honor-bar.html
+++ b/public/restaurants/the-honor-bar.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13105500292">Call +1-310-550-0292</a>
         <a class="pmenu" href="https://honorbar.com/locations/beverlyhills/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/the-polo-lounge.html b/public/restaurants/the-polo-lounge.html
index 89d7b0a..c276be5 100644
--- a/public/restaurants/the-polo-lounge.html
+++ b/public/restaurants/the-polo-lounge.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13108872777">Call +1-310-887-2777</a>
         <a class="pmenu" href="https://www.dorchestercollection.com/los-angeles/the-beverly-hills-hotel/dining/polo-lounge" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/the-rooftop-by-jg.html b/public/restaurants/the-rooftop-by-jg.html
index 2e2bd26..d2174b4 100644
--- a/public/restaurants/the-rooftop-by-jg.html
+++ b/public/restaurants/the-rooftop-by-jg.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13108606566">Call +1-310-860-6566</a>
         <a class="pmenu" href="https://waldorfastoriabeverlyhills.com/dining/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/the-terrace-at-the-maybourne.html b/public/restaurants/the-terrace-at-the-maybourne.html
index a5c4535..70a23ae 100644
--- a/public/restaurants/the-terrace-at-the-maybourne.html
+++ b/public/restaurants/the-terrace-at-the-maybourne.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13108607886">Call +1-310-860-7886</a>
         <a class="pmenu" href="https://www.maybourne.com/en/hotels/the-maybourne-beverly-hills/restaurants-bars/the-terrace" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/via-alloro.html b/public/restaurants/via-alloro.html
index d399dd4..18747fd 100644
--- a/public/restaurants/via-alloro.html
+++ b/public/restaurants/via-alloro.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102752900">Call +1-310-275-2900</a>
         <a class="pmenu" href="https://www.viaalloro.com/" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/wally-s.html b/public/restaurants/wally-s.html
index a09c23f..18d8cbf 100644
--- a/public/restaurants/wally-s.html
+++ b/public/restaurants/wally-s.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13104753540">Call +1-310-475-3540</a>
         <a class="pmenu" href="https://www.wallywine.com/beverlyhills" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/restaurants/xi-an.html b/public/restaurants/xi-an.html
index 4c745c0..3a96461 100644
--- a/public/restaurants/xi-an.html
+++ b/public/restaurants/xi-an.html
@@ -60,7 +60,7 @@
         <a class="pcall" href="tel:+13102753345">Call +1-310-275-3345</a>
         <a class="pmenu" href="https://www.xianbeverlyhills.com/menu" target="_blank" rel="noopener">View current menu →</a>
       </div>
-    <div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div>
+    
     <p class="rest-more"><a href="/map.html">See it on the map →</a> &nbsp;·&nbsp; <a href="/videos.html">All restaurant films →</a></p>
   </div></article>
 
diff --git a/public/videos.html b/public/videos.html
index bfe4fb5..78553ac 100644
--- a/public/videos.html
+++ b/public/videos.html
@@ -328,7 +328,7 @@
       </figure>
     </div>
   </div></section>
-  <div class="wrap"><div class="ad-wrap"><span class="ad-label">Advertisement</span><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5278231299883833" data-ad-slot="8227434793" data-ad-format="auto" data-full-width-responsive="true"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div></div>
+  <div class="wrap"></div>
   
   <section class="vid-channel">
     <div class="wrap">
diff --git a/server.js b/server.js
index 31f8c79..b7356ca 100644
--- a/server.js
+++ b/server.js
@@ -4,6 +4,13 @@ const app = express();
 const PORT = process.env.PORT || 9941;
 const PUB = path.join(__dirname, 'public');
 app.get('/ads.txt', (_req, res) => res.type('text/plain').send('google.com, pub-5278231299883833, DIRECT, f08c47fec0942fa0\n'));
+app.get('/robots.txt', (_req, res) => res.type('text/plain').send('User-agent: *\nAllow: /\nSitemap: https://beverlyhillsvideos.com/sitemap.xml\n'));
+app.get('/sitemap.xml', (_req, res) => {
+  const fs = require('node:fs');
+  const walk = dir => fs.readdirSync(dir, { withFileTypes: true }).flatMap(e => e.isDirectory() ? walk(path.join(dir, e.name)) : e.name.endsWith('.html') ? [path.join(dir, e.name)] : []);
+  const urls = walk(PUB).map(f => '/' + path.relative(PUB, f).replaceAll(path.sep, '/').replace(/index\.html$/, '').replace(/\.html$/, ''));
+  res.type('application/xml').send(`<?xml version="1.0" encoding="UTF-8"?>\n<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">${urls.map(u => `<url><loc>https://beverlyhillsvideos.com${u}</loc></url>`).join('')}</urlset>`);
+});
 app.get('/healthz', (_req, res) => res.json({ ok: true, site: 'beverlyhillsvideos' }));
 app.use(express.static(PUB, { extensions: ['html'] }));
 app.listen(PORT, () => console.log(`beverlyhillsvideos on :${PORT}`));

← a2328ed auto-data-snapshot: 2026-09-03T06:01:09 (1 data files) — soc  ·  back to Beverlyhillsvideos  ·  auto-data-snapshot: 2026-09-03T08:35:39 (1 data files) — soc c4dc0c8 →